- Linear Search
- Binary Search
- Insertion Sort
- Selection Sort
- Merge Sort
- Quick Sort
- Counting Sort
- Radix Sort
- Splits the search space in half each time.
- Time: O(log n)
- Requires a sorted array.
-
Uses a pivot to partition the array.
-
Time: Avg O(n log n), Worst O(n²)
-
Fast in practice, but not stable.







