Types of linked list - Doubly linked list list.ppt

ssuser5d8d9a 7 views 5 slides Mar 03, 2025
Slide 1
Slide 1 of 5
Slide 1
1
Slide 2
2
Slide 3
3
Slide 4
4
Slide 5
5

About This Presentation

Data Structures


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.

Data Structures: A Pseudocode Approach
with C 5
Tags