|
|
|
|
|
by marginalia_nu
914 days ago
|
|
That's not how asymptotes work. Big O tells you that there exists some number N such that for each number m larger than N, if O(f(m)) > O(g(m)) then f(m) > g(m). In practice, N may be 10, or it may be larger than the number of atoms in the universe. It's unrelated to the number of items in your collection, but a property of the algorithm itself. |
|