notes

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

CircularLinkedList.md (342B)


      1 # Circular Linked List
      2 
      3 CS202 L14
      4 
      5 **Definition:** This is a singly linked list where the last node points back to the first node. 
      6 
      7 This could be useful when implementing OS based threads as you would need to cycle through threads of execution when one thread gets blocked. There are not many other uses for this datastructure beyond this.