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

  1. Data
  2. A pointer to the next node (next)
  3. A pointer to the previous node (prev)