Click to See Complete Forum and Search --> : circular linked list.


aravindan333
December 22nd, 2010, 12:10 AM
Can we delete an element in a circular linked list, if yes how are we supposed to do that?

nuzzle
December 22nd, 2010, 02:29 AM
Can we delete an element in a circular linked list, if yes how are we supposed to do that?

Sure you can. What do you consider to be the problem?

MrViggy
December 22nd, 2010, 12:02 PM
Just any other linked list. Remove the node, and re-adjust the pointers in the remaining nodes that pointed to the removed node.

Viggy