the whole point of linked list is to use "reference". so just simply replace values of current node with the next node's and have the pointer pointing to the node that's next to next.
1->2->3->4->tail saying you wanna remove 2, you have the pointer pointing to 3 and became 1->3->4->tail On Mar 13, 12:53 pm, UMESH KUMAR <[email protected]> wrote: > hi > > Given a singly Link list but Head of the List is > unknown so my question is that ................ > > How to delete a given node from the List??????????? -- You received this message because you are subscribed to the Google Groups "Algorithm Geeks" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/algogeeks?hl=en.
