You are on page 1of 8

CSE 1315

Data Structure
Lecture-12

Prithwiraj Bhattacharjee
B.Sc in CSE at SUST
Adjunct Faculty, Dept. of CSE
Leading University, Sylhet
Header Linked List
Traverse a Circular Linked List
Some Linked List Types
Two way Linked List

● INFO - item
● Back - back pointer
● Forw - next pointer
Two way circular Header list
Delete a node from two way list

● FORW[BACK[LOC]] = FORW[LOC]
● BACK[FORW[LOC]] = BACK[LOC]
Insert a node from two way list

You might also like