notes

Personal notes
git clone git://git.laack.co/notes.git
Log | Files | Refs

DoublyLinkedList.md (225B)


      1 # Doubly Linked List
      2 
      3 CS 221 W 11 Lecture 13. 
      4 
      5 **Definition:** This is a linked list that has a pointer to the tail and head that are accessible, and every element in the list has a pointer to the previous and next nodes. 
      6