Hello,
i am nobies in data structure and i really want to know how to remove specific node in linked list in vb.net
thanks
glen
Printable View
Hello,
i am nobies in data structure and i really want to know how to remove specific node in linked list in vb.net
thanks
glen
You get a reference to the desired node, either by calling Find or FindLast or else by traversing the list until you find the desired node, then you call Remove on the list and specify that node.