Linked List

1 revision
#11 week ago
+6
Migrated from pages table
+A **Linked List** is a fundamental [data structure](/wiki/data_structure) where elements are not stored contiguously. Instead, each [node](/wiki/node) holds its own data and a link (or pointer) to the next node in the sequence. This flexible structure allows for dynamic memory allocation and efficient insertion or deletion of elements, unlike a static [array](/wiki/array).
+## See also
+- [Stack](/wiki/stack)
+- [Queue](/wiki/queue)
+- [Tree](/wiki/tree)
... 1 more lines