Doubly Linked List is a data structure that consists of a set of nodes each of which contains a value and 2 pointers, one pointing to the previous node and one pointing to the next node
Representation of Doubly Linked List in Data Structure
- Data
- A pointer to the next node (next)
- A pointer to the previous node (prev)