|
|
|
|
|
by btown
4189 days ago
|
|
Very interesting post - it seems that, like many things in computing, intrusive lists make a lot of sense until you start thinking about cache locality. Perhaps on machines of the time, branch prediction was slow enough that conditional code would be a limiting factor... but on modern architectures, it's all about that cache, 'bout that cache, no thrashing. |
|
But a linked list of any kind should basically never be used when performance matters.