DLList: A Doubly-Linked List
Learn to implement a doubly-linked list.
We'll cover the following
A DLList (doubly-linked list) is very similar to an SLList
except that each node u
in a DLList
has references to both the node u.next
that follows it and the node u.prev
that precedes it.
Create a free account to access the full course.
By signing up, you agree to Educative's Terms of Service and Privacy Policy