algorithm

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • phanipep
    New Member
    • Dec 2007
    • 38

    #1

    algorithm

    Write an algorithm to insert a node before a given node in a linked list?
  • smalpani
    New Member
    • Aug 2007
    • 29

    #2
    Originally posted by phanipep
    Write an algorithm to insert a node before a given node in a linked list?

    this question always gets you till you know the trick.

    Insert the node after the node to which you have a pointer.

    Swap the contents of both the node.

    Thats it.

    Comment

    Working...