Skip to content

Latest commit

 

History

History
8 lines (6 loc) · 394 Bytes

File metadata and controls

8 lines (6 loc) · 394 Bytes

Linked List

  • A data structure that contains a head, tail and length property.
  • Linked Lists consist of node, and each node has a value and a pointer to another node or null.
  • Almost identical to Singly Linked Lists except every node has another pointer, to the previous node!