1. The Big Picture

Perspectives

Big-O Notation

$$ f(n) = O(g(n)) \text{ if there exist constants } c > 0 \text{ and } n_0 > 0 \text{ such that } 0 \leq f(n) \leq c \cdot g(n) \text{ for all } n \geq n_0. $$

Big-O Classifications

Data Structures

Relationship of General-Purpose Data Structures


Back to Home Next Lecture