Skip to content

Latest commit

 

History

History

linked-lists

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!