Skip to content

Latest commit

 

History

History
12 lines (5 loc) · 227 Bytes

File metadata and controls

12 lines (5 loc) · 227 Bytes

Asymptotic Analysis


suppress constant factors and lower-order terms

ex: running time of merge sort is 6nlogn+6n ——> nlogn that is O(nlogn)

Omega Theta, bigO — > lower boundary, sandwich, upper boundary