| Complexity | Name | Example |
|---|---|---|
| O(1) | Constant time | Hash map lookup |
| O(log n) | Logarithmic | Binary search |
| O(n) | Linear | Iterating an array |
| O(n log n) | Log-linear | Merge sort, heap sort |
| O(n²) | Quadratic | Nested loops, bubble sort |
| O(2ⁿ) | Exponential | Brute-force subset enumeration |