How to delete a node in a singly link list with only one pointer pointing to node to be deleted?
[Start and end pointers are not known, the available information is poin
The only sensible and safe option under such restrictions is to mark the node deleted without actually unlinking it, deferring that to a later time.