From charlesreid1

Revision as of 01:14, 3 June 2017 by Admin (talk | contribs) (Created page with "Linked lists are data structures based around the idea of memory pointers. This allows memory to be allocated on the fly, but requires giving up some functionality (like O(1)...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Linked lists are data structures based around the idea of memory pointers. This allows memory to be allocated on the fly, but requires giving up some functionality (like O(1) random access).