Linked List Insertion
In this article, we will learn how to insert a node in a linked list. We can see that 4 different scenarios arise. We want to insert a node before the head of the linked list. This operation resembles the push operation in the stack. We want to insert a node at the end of the linked list i.e. next to the tail node. We want to insert a node at the i-th position of the linked list.
Dec 26, 2022
Data Structure
Linked List
Most Popular Articles

Linked List Insertion
Dec 26, 2022
Data Structure
Linked List

Doubly Linked List
Jan 30, 2023
Data Structure
Doubly Linked List

Linked List Reversal
Dec 26, 2022
Data Structure
Linked List

Linked List
Feb 26, 2021
Data Structure
Linked List
Latest Articles

Doubly Linked List
Jan 30, 2023
Data Structure
Doubly Linked List

Circular Linked List
Mar 15, 2021
Data Structure
Circular Linked List

Linked List Merge Sort
Dec 19, 2022
Data Structure
Linked List

Linked List Insertion
Dec 26, 2022
Data Structure
Linked List

Linked List Deletion
Dec 26, 2022
Data Structure
Linked List

Linked List Reversal
Dec 26, 2022
Data Structure
Linked List

Linked List
Feb 26, 2021
Data Structure
Linked List