|
|
|
|
|
by justAlittleCom
3582 days ago
|
|
I am sorry... but no, the article is interesting and well written, but it has nothing to do with big O notation.
Random access in memory is still in O(1), it doesn't depend on the size of the data structure (I am assuming that is the "n" the author talk about by pretending that a memory access is O(sqrt(n)).
Even if you have a very complex memory architecture with 15 caching levels, spread all over the world, if you have a maximum of 5 day delay for accessing your memory through the mail, it will still be O(1), because 5 day is constant, it does not depend on the size of the data structure. The "n" the author is really talking about may be the depth of the cache hierarchy. |
|
[1] http://www.ilikebigbits.com/blog/2015/2/9/the-myth-of-ram-pa...