1/16
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced |
---|
No study sessions yet.
Selection Sort
O(n^2)
Insertion Sort (Best Case)
O(n)
Insertion Sort (Worst Case)
O(n^2)
Merge Sort
O(n log n)
Quick Sort (Best Case)
O(n log n)
Quick Sort (Worst Case)
O(n^2)
Binary Search (Best Case)
O(1)
Binary Search (Worst Case)
O(log n)
Closest Pair of Points
O(n log n)
BFS
O(V + E)
DFS
O(V + E)
Kruskal’s Algorithm
O(E log V)
Prim’s Algorithm
O(E log V)
Dijkstra’s Algorithm
O(V log V + E)
Strassen’s Matrix Multiplication
O(n^2.81)
Naïve Matrix Multiplication
O(n^3)
Number of Islands (BFS/DFS)
O(V + E)