Please enable JavaScript.
Coggle requires JavaScript to display documents.
Algorithms - Coggle Diagram
Algorithms
Sort
Selection Sort
Bubble Sort
Merge Sort
Memory
Addresses / Pointers
Hexadecimal
Pointers
Call Stack
Search
Linear Search
Binary Search
Complexity Analysis
Time Complexity
O (Big O) notation
O(1)
O(log n)
Log definition
O(n)
O(n log n)
O(n²)
O(n³)
O(2ⁿ)
O(n!)
Ω (Omega) notation
Ω(1)
Ω(log n)
Ω(n)
Ω(n log n)
Ω(n²)
Space Complexity
Recursion