Algorithms

<Hash Table>

<BFS and DFS>

<Topological Sort> 

<Shortest Path Problem>


Time complexity: O(E V) = O(V^3). 모든 에지 E에 대해서 relexation을 V-1번 실행.


Time complexity: O(V^2), but with min-priority queue it is O(V + E log V)


Time complexity: O(V^3)


<Minimum Spanning Tree>



Time complexity = O(E log E) = O(E log V)


Time complexity = O(E log E) = O(E log V) by using priority heap. O(V^2) when priority heap is not used.


<Pre-order, In-order, Post-order Traversal>

<Dynamic Programming>

<Optimal Substructure>

<Recursion>

<2-SAT vs 3-SAT>

<P & NP Problem>

<Depth and Height in Tree>

<Max flow Algorithm>

<AVL Tree>

<Red Black Tree>

<B - Tree>

<Simple graph>

<Loop invariant>

<Singly linked list vs Doubly linked list>



<Common Data Structure and Time Complexity>

<Clique>

<Eulerian vs Hamiltonian>

<Circuit vs Path>

<Boolean Logic>