You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to reading-stacks
Hi all. In last week's session I mentioned that Big-O notation is not exactly mapping to the code run time in a machine with multiple levels of memory (L1-2 in CPU core -> L3 in CPU -> RAM -> hard drive).
There's a blog post experimenting random memory access inside a linked list and claiming that the random memory access is O(√N) instead of O(1), and iterating through a linked list is O(N√N) in practice