John Mavrick's Garden

Search IconIcon to open search

Last updated Unknown

Status: Tags: #archivedCards/cmpt125/bigo Links: Big O Notation


Big O Notation Orders of Magnitude

O(1) – bounded by some absolute constant (e.g.,  <= 100)​

O(log N) – logarithmic complexity – very fast​

O(N) ?

O(N log N) – Almost as good as linear.​ O(N2) – quadratic time​ O(N3), O(N4), …O(N7)… O(Nconst) – polynomial ​ O(2N) – exponential: considered as very inefficient​ O(4N) – exponential: even worse than 2N​ O(N!) – more than exponential

Comparisons to Big O’s

f(N) = $1.5N^2$ + 4N + 3 ? Image from Gyazo


Backlinks


References:

Created:: 2021-10-18 21:23


Interactive Graph