0
votes
Deleting a middle node from a single linked list when pointer to the previous node is not available
You could do delayed delinking where you set nodes to be delinked out of the list with a flag and then delete them on the next proper traversal. Nodes set to be delinked would need to be properly …
