Concept Flow - Common complexity classes (O(1), O(n), O(log n), O(n²))
Start: Input size n
Choose algorithm
Measure steps as function of n
Classify complexity
O(1): Constant steps
O(log n): Steps grow slowly
O(n): Steps grow linearly
O(n²): Steps grow quadratically
Predict performance for large n
End
This flow shows how we start with input size, pick an algorithm, count steps, classify complexity, and predict performance.