Delete a node in linked list without head pointer
Generally, people ask the question to delete a node in linked list without head pointer. It is a tricky question because the general approach to delete the given node is that traverse the linked list till the node which you want to delete. In this article, I will describe that how we can delete a […]
Delete a node in linked list without head pointer Read More »