목록Interview (4)
5 DERECHA
1. What is the network? A network is a structure that allows computers and other devices to exchange data. It enables communication and resource sharing. 네트워크는 컴퓨터 및 기타 장치들 간에 데이터를 주고받을 수 있는 구조를 의미합니다. 이는 데이터 통신과 리소스 공유를 가능하게합니다. Network is like a system of roads that connect different places. In a computer network, these "roads" are cables or wireless connections, and the "places" are computers..
기출 문제 인터넷에 있는거 정리 1. OS related questions, Questions related to my current job, memory management, a simple coding question with two 193.pointed approach to solve. 2. Knowledge of standard data structures like Arrays, Linked Lists, Trees, Tries, Hash tables etc. 3. implementing and utilizing linked lists for dynamic data structures 4. basic questions on layer 2 and layer 3 protocols and as well ..
1. 언어적 준비 1) post-order 필요한거 설명할때 We can see that we need to process the children before we process a node. This indicates that we need to perform a post-order traversal. To implement post-order traversal, we implement a recursive function. This function takes the root of the subtree as the input. 2) max_sum = max(max_sum, a) 이런 상황일때 compare max_sum with ""the sum of the following"(좋은 표현)", and ..
Neetcode Problem Array & Hashing 1) Contains Duplicate sort랑 hash 다 하기 2) Valid Anagram sort랑 hash 다 하기 (hash의 경우, 26개만 가지고 할 수도 있는거 인지) 3) Two Sum - 2 for loop || struct 한 상태로 sort || hash 로 target - num 으로 하는 방법 이 4) Group Anagrams - hash using vector + ans 에다가 바로 넣어주려면 아래 처럼 만들면 됨 + alphabet 개수 count하는거를 string으로 넣는 방법도 있음! 5) Top K frequent Elements - priority_queue 사용 익히기 const를 매게변수에서도(ope..