Linked list is a linear data structure that uses dynamic memory to construct the list. There are many types of lists. Since, a list is abstract data type its operations are also different from normal builtin types. In this document, you will find articles related to linked-lists.
Linked List Articles
- Singly Linked List
- Inserting And Deleting From Singly Linked List
- Doubly Linked List
- Inserting A Node In Doubly Linked List
- Deleting A Node From Doubly Linked List
- Circular Linked List
- Inserting A Node Into Singly Circular Linked List
- Deleting A Node from Singly Circular Linked List
- Concatenating Two Singly Circular Linked Lists