SlideShare a Scribd company logo
Linked List
Sushovan Chaudhury
B.E(CSE),M.Tech
Linked List
 What is a Linked List?
A Linked List is a data structure which is a collection of nodes and each node contains
data items and a pointer, popularly called Link which Points to the next node.
 Distinguish between an Array and a Linked List
Array is fixed size whereas Linked List is dynamic sized.
 Limitations of Array
Fixed in dimension, Chance of memory loss, cost of insertion and deletion of an
element is costly.
 Advantages of Linked List:
Dynamic memory allocation, cost of inserting and deleting is less.
Pictorial Representation of Linked List
Operations on Linked List
 Creation
 Insertion
 Deletion
 Traversing
 Searching
Types of Linked List
Singly Linked List
Circular Linked List
Doubly Linked List
Linked List as Structure
struct Node
{
int data;
struct Node *next;
};
Creating Nodes
struct Node* head = NULL;
struct Node* second = NULL;
struct Node* third = NULL;
head = (struct Node*)malloc(sizeof(struct Node));
second = (struct Node*)malloc(sizeof(struct Node));
third = (struct Node*)malloc(sizeof(struct Node));
Populate nodes and Linking of nodes
head->data=1;
head->next=second;
second->data=2;
second>next=third;
third->data=3;
third->next=NULL;
Traversing the Linked List
void printList(struct Node* n)
{
while (n != NULL) {
printf(" %d ", n->data);
n = n->next;
}
}
//printList(head);
Insertion in Linked List
 Insertion at the beginning
 Insertion in between nodes
 Insertion at the end
Insertion in a Singly Linked List
34
56 67 78
INSERTION
NULL
HEAD
Deletion in Singly Linked List
Insertion in Circular List
Deletion in Circular Linked List
Insertion in Doubly Linked List
Deletion in Doubly Linked List
Running time for some Linked List
Operations

More Related Content

PPT
self designed Linked List
PPTX
Data structures
PPTX
PPTX
Types of datastructures
PPTX
Data structure
PPT
Introduction to data structure
PPTX
Data structure
PPTX
Singly Linked List
self designed Linked List
Data structures
Types of datastructures
Data structure
Introduction to data structure
Data structure
Singly Linked List

What's hot (18)

PPT
Data struters
PPTX
Types Of Data Structure
PPTX
Linked list
PDF
Papers We Love Kyiv, July 2018: A Conflict-Free Replicated JSON Datatype
PPTX
Linked lists
PPT
Chapter 8: tree data structure
PPT
Preparing for BIT – IT2301 Database Management Systems 2001e
PPT
Lecture 1 data structures and algorithms
PPTX
data structure
PPTX
Introduction to Data Structure part 1
PPT
Data structures and Alogarithims
PDF
Linked list (introduction) 1
PPT
Elementary data organisation
PPTX
Data structure (basics)
PPTX
Data structures Lecture no.3
PPTX
Introduction to data structure ppt
PPTX
Introduction to data structures (ss)
PPTX
Over view of data structures
Data struters
Types Of Data Structure
Linked list
Papers We Love Kyiv, July 2018: A Conflict-Free Replicated JSON Datatype
Linked lists
Chapter 8: tree data structure
Preparing for BIT – IT2301 Database Management Systems 2001e
Lecture 1 data structures and algorithms
data structure
Introduction to Data Structure part 1
Data structures and Alogarithims
Linked list (introduction) 1
Elementary data organisation
Data structure (basics)
Data structures Lecture no.3
Introduction to data structure ppt
Introduction to data structures (ss)
Over view of data structures
Ad

Similar to Linked list in c (20)

DOCX
Linked list.docx
PPT
Link list using array in Data structure amd algorithms
PPT
ANOITO2341988888888888888888888885555.ppt
PDF
DS Module 03.pdf
PPT
Linked List
PPTX
link list.pptx complete notes detailed ans
PPTX
UNIT 2LINKEDLISdddddddddddddddddddddddddddT.pptx
PPTX
linkedlistforslideshare-210123143943.pptx
PPTX
Linked list
PPTX
Datastucture-Unit 4-Linked List Presentation.pptx
PPTX
Linked list in Data Structure and Algorithm
PPTX
Linked List in Data Structure
PPTX
Data Structures and Algorithms - Lec 05.pptx
PPTX
Linked List
PPTX
Linked list
PPTX
Unit 5 linked list
PDF
Linked Lists.pdf
PPTX
Data structure and algorithm list structures
PPTX
Linked lists linked lists vs Arrays.pptx
Linked list.docx
Link list using array in Data structure amd algorithms
ANOITO2341988888888888888888888885555.ppt
DS Module 03.pdf
Linked List
link list.pptx complete notes detailed ans
UNIT 2LINKEDLISdddddddddddddddddddddddddddT.pptx
linkedlistforslideshare-210123143943.pptx
Linked list
Datastucture-Unit 4-Linked List Presentation.pptx
Linked list in Data Structure and Algorithm
Linked List in Data Structure
Data Structures and Algorithms - Lec 05.pptx
Linked List
Linked list
Unit 5 linked list
Linked Lists.pdf
Data structure and algorithm list structures
Linked lists linked lists vs Arrays.pptx
Ad

Recently uploaded (20)

PDF
BÀI TẬP BỔ TRỢ 4 KỸ NĂNG TIẾNG ANH 9 GLOBAL SUCCESS - CẢ NĂM - BÁM SÁT FORM Đ...
PDF
Computing-Curriculum for Schools in Ghana
PPTX
PPH.pptx obstetrics and gynecology in nursing
PPTX
1st Inaugural Professorial Lecture held on 19th February 2020 (Governance and...
PDF
Black Hat USA 2025 - Micro ICS Summit - ICS/OT Threat Landscape
PDF
Anesthesia in Laparoscopic Surgery in India
PPTX
Pharma ospi slides which help in ospi learning
PPTX
Institutional Correction lecture only . . .
PDF
Basic Mud Logging Guide for educational purpose
PPTX
IMMUNITY IMMUNITY refers to protection against infection, and the immune syst...
PPTX
Microbial diseases, their pathogenesis and prophylaxis
PDF
VCE English Exam - Section C Student Revision Booklet
PDF
O5-L3 Freight Transport Ops (International) V1.pdf
PDF
Saundersa Comprehensive Review for the NCLEX-RN Examination.pdf
PDF
STATICS OF THE RIGID BODIES Hibbelers.pdf
PDF
Microbial disease of the cardiovascular and lymphatic systems
PDF
Insiders guide to clinical Medicine.pdf
PPTX
Introduction_to_Human_Anatomy_and_Physiology_for_B.Pharm.pptx
PPTX
GDM (1) (1).pptx small presentation for students
PDF
Supply Chain Operations Speaking Notes -ICLT Program
BÀI TẬP BỔ TRỢ 4 KỸ NĂNG TIẾNG ANH 9 GLOBAL SUCCESS - CẢ NĂM - BÁM SÁT FORM Đ...
Computing-Curriculum for Schools in Ghana
PPH.pptx obstetrics and gynecology in nursing
1st Inaugural Professorial Lecture held on 19th February 2020 (Governance and...
Black Hat USA 2025 - Micro ICS Summit - ICS/OT Threat Landscape
Anesthesia in Laparoscopic Surgery in India
Pharma ospi slides which help in ospi learning
Institutional Correction lecture only . . .
Basic Mud Logging Guide for educational purpose
IMMUNITY IMMUNITY refers to protection against infection, and the immune syst...
Microbial diseases, their pathogenesis and prophylaxis
VCE English Exam - Section C Student Revision Booklet
O5-L3 Freight Transport Ops (International) V1.pdf
Saundersa Comprehensive Review for the NCLEX-RN Examination.pdf
STATICS OF THE RIGID BODIES Hibbelers.pdf
Microbial disease of the cardiovascular and lymphatic systems
Insiders guide to clinical Medicine.pdf
Introduction_to_Human_Anatomy_and_Physiology_for_B.Pharm.pptx
GDM (1) (1).pptx small presentation for students
Supply Chain Operations Speaking Notes -ICLT Program

Linked list in c