Singly Linked List Deletion

After insertion and search, we'll be tackling the concept of deletion in a linked list.

Introduction #

The deletion operation is mostly based on search operation. It uses the search functionality to find the value in the list, and then just deletes it.

Deletion is one of the instances where linked lists are more efficient than arrays. In an array, you have to shift all the ...