Insertion in Singly Linked List (Insert After)
Now that we've covered "insert at head" and "insert at end", we will discuss "insert after" and implement it in Java.
We'll cover the following
Insert After
The insertAfter
function takes the data of the new node and the node after, which we want to insert this new node. The illustration below will help jog your memory.
Level up your interview prep. Join Educative to access 80+ hands-on prep courses.