Download as pptx, pdf, or txt
Download as pptx, pdf, or txt
You are on page 1of 4

Introduction to Doubly

Linked Lists
DOUBLY LINKED LIST
•A doubly linked list is a linear data structure where each node contains a data part
and two pointers: one pointing to the next node and one to the previous node.

•Differences from singly linked lists: each node has an extra pointer to the previous
node.

•Advantages: easier to traverse in both directions, more flexible in certain


operations.
Structure of a Doubly
Linked List
ANY QUERIES?

You might also like