Y
Hacker News
new
|
ask
|
show
|
jobs
by
SeanLuke
1519 days ago
What does $m^{1 + O(1)}$ time mean exactly? This could be m^5000 for all we knew. How is this almost-linear, and how can it be guaranteed?
1 comments
okintheory
1519 days ago
It's little-oh, not Big-Oh (o(1) is not O(1)). Instead $f(n) = o(1)$ means $\lim_{n \to infty f(n)} = 0$. So $m^{1+o(1)}$ is smaller than $m^1.00001$ for large enough m.
link
SeanLuke
1519 days ago
Got it. I had missed the little-o.
link