How to delete a node in a singly linked list without access to the list header.
Anonymous
If I understand correctly, singly linked list means access only to the next node. Also You can not access the prev node. Given the situation you can: 1) Switch the CONTENT of the next node to the current. 2) Delete the next node.
Check out your Company Bowl for anonymous work chats.