CircularDoublyLinkedList.md (389B)
1 # Circular Doubly Linked List 2 3 CS202 L14 4 5 **Definition:** This is a doubly linked list where the last pointer points to the first and the first pointer of the first element points to the last. 6 7 Can be used wherever [CircularLinkedList](CircularLinkedList.md) are used and are better when bi-directional movement is required. I am having trouble thinking of when this would ever be useful.