book-notes

Chapter 1 - Binary search / Big O notation

Logarithms

Big O notation

Common Big O run times

Big O Example
O(log n) Binary search
O(n) Simple search
O(n log n) Quicksort
O(n^2) Selection sort
O(n!) Traveling salesman

Recap

Neet codes