Can we delete an element in a circular linked list, if yes how are we supposed to do that?
Printable View
Can we delete an element in a circular linked list, if yes how are we supposed to do that?
Just any other linked list. Remove the node, and re-adjust the pointers in the remaining nodes that pointed to the removed node.
Viggy