Troy@lemmy.ca to Technology@lemmy.worldEnglish · 10 months agoUntangling Non-Linearity: How the Linked List Changed Everythingschmud.deexternal-linkmessage-square4fedilinkarrow-up173arrow-down11cross-posted to: [email protected]
arrow-up172arrow-down1external-linkUntangling Non-Linearity: How the Linked List Changed Everythingschmud.deTroy@lemmy.ca to Technology@lemmy.worldEnglish · 10 months agomessage-square4fedilinkcross-posted to: [email protected]
minus-squareMondayToFriday@lemmy.calinkfedilinkEnglisharrow-up11arrow-down1·9 months agoOn modern computers, linked lists are rarely a good option for performance. The overhead of the memory allocator and the non-sequential layout (which results in CPU memory cache misses) means that dynamic arrays are surprisingly faster even for random inserts on very long lists.
On modern computers, linked lists are rarely a good option for performance. The overhead of the memory allocator and the non-sequential layout (which results in CPU memory cache misses) means that dynamic arrays are surprisingly faster even for random inserts on very long lists.