CS61B - Singly Linked List

  • Singly Linked List

  • A linked list is a collection of nodes that are “linked” together. The nodes are arranged in such a way that each node “points” to the next item in the sequence. There are several variants of this data structure that include the singly linked list that we are going to talk about in this post as well as the doubly linked list. (Read More!)