개발 공부
-
구글 개발자가 뽑은 인터뷰 TOP 10 알고리즘 문제개발 공부/Algorithm 2020. 11. 18. 13:09
1. DFS (깊이 우선 탐색) 2. BFS (너비 우선 탐색) 3. Matching Parenthesis probelm (유효한 괄호 문제) 4. Using Hash Table (해시 태이블) 5. Variables/Pointers manipulation (변수/포인터) 6. Reserve Linked List (Duplicates, Removing duplicates) (링크드리스트 거꾸로 뒤집기 등) 7. Sorting fundamentals (Quick sort, Merge sort, Bubble sort techniques, runtime of a sort, time space complexity) (정렬 알고리즘에 관해서) 8. Recursion (재귀) 9. Custom data struct..