Types of linked list - Doubly linked list list.ppt
ssuser5d8d9a
7 views
5 slides
Mar 03, 2025
Slide 1 of 5
1
2
3
4
5
About This Presentation
Data Structures
Size: 132.47 KB
Language: en
Added: Mar 03, 2025
Slides: 5 pages
Slide Content
Data Structures: A Pseudocode Approach
with C 1
Doubly Linked List
A doubly linked list is a linked list structure in which each node
has a pointer to both its successor and its predecessor.
Data Structures: A Pseudocode Approach
with C 2
ADT Structure
Data Structures: A Pseudocode Approach
with C 3
There are three pieces of metadata in the head structure: a
count, a position pointer for traversals, and a rear pointer:
Data Structures: A Pseudocode Approach
with C 4
Circularly Linked List
In a circularly linked list, the last node’s link points to
the first node of the list.
Circularly linked lists are primarily used in lists that
allow access to nodes in the middle of the list without
starting at the beginning.