Doubly Linked List
This section explores operations on a doubly linked list
We'll cover the following...
We ended the section on linked list with a question on the complexity of an operation that seeks to find the parent of a given linked list node. The answer is O(n) since if you give me a linked list node, I still need to start from the head and traverse down the linked list matching each node with the one given to me ...