Remove a node from a singly linkedlist without knowing the head node. All you have is the node itself.
Anonymous
if node is the last one, there no way to properly remove it, otherwise just copy next value and next->next pointer from the following node and delete next node
Check out your Company Bowl for anonymous work chats.