What is a linked list?
A Linked List,
a similar array, is a linear data structure. Like arrays, linked list items are not stored in a single area; instead, pointers are used to connect the components. They consist of a succession of linked nodes. Each node holds the data as well as the address of the next node.
a similar array, is a linear data structure. Like arrays, linked list items are not stored in a single area; instead, pointers are used to connect the components. They consist of a succession of linked nodes. Each node holds the data as well as the address of the next node.
Basic operations on Linked Lists:
- Deletion
- Insertion
- Search
Practice Coding Question
Single Linked List Practice
- Create and Traverse linked list in c
- Insert at Beginning linked list in c
- Insert at End linked list in c
- Insert at Middle linked list in c
- Delete the First linked list in c
- Delete the Last linked list in c
- Delete the Middle linked list in c
- Delete All linked lists in c
- Delete by key linked list in c
- Count Nodes linked list in c
- Reverse List linked list in c
- Search an element linked list in c
Doubly Linked List Practice
- Create and Traverse list in c
- Insertion( Beginning, End, N ) linked list in C
- Deletion(At Begging, At End, At N) linked list in C
- Reverse (Create, Reverse, Display ) linked list in C
Circular Linked List Practice
0 Comments