Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
 Node reverse(Node head) {
    Node previous = null;
    Node current = head;
    Node forward;

    while (current != null) {
        forward = current.next;
        current.next = previous;
        previous = current;
        current = forward;
    }

    return previous;
}

How exactly is it reversing the list? I get that it first sets the second node to forward. Then it says current.next is equal to a null node previous. Then it says previous is now current. Lastly current becomes forward?

I can't seem to grasp this and how its reversing. Can someone please explain how this works?

share|improve this question
7  
This is python? – Ben Jan 31 '12 at 9:08
1  
from __future__ import braces ? – Johnsyweb Jan 31 '12 at 9:11
my fault..fixed to java! – user1176235 Jan 31 '12 at 9:12
1. This code does not seem to be python... 2. list reverse is a basic algorithm, you can find many related material on web – ciphor Jan 31 '12 at 9:13
7  
I would draw up a little 3-node linked list on a piece of paper, and just go through the algorithm step by step, see what happens. You could do the same thing in a debugger, but doing it on paper will force you to really think about how each piece of state is changing. – yshavit Jan 31 '12 at 9:15
show 3 more comments

3 Answers

enter image description here

share|improve this answer
2  
+1 for the effort ! – ravi Feb 6 '12 at 14:19
@ravi Thanks for the appreciation. :) – Anisha Kaul Feb 6 '12 at 15:49

The code simply walks the list and inverts the links until it reaches the previous tail, which it returns as the new head.

Before:

Node 1 (Head) -> Node 2 -> Node 3 -> Node 4 (Tail) -> null

After:

   null <- Node 1 (Tail) <- Node 2 <- Node 3 <- Node 4 (Head)
share|improve this answer
2  
I think he wanted to understand the "code". The meaning of "reverse" is quite obvious, the "code" isn't. – Anisha Kaul Jan 31 '12 at 10:47
@Anisha Kaul: Did you actually read my first sentence? – Michael Borgwardt Jan 31 '12 at 12:49
3  
"The code" - Which code? – Martin Konicek Jul 15 '12 at 15:07

You reverse the list iteratively and always have the list in the interval [head, previous] correctly reversed(so current is the first node that has its link not set correctly). On each step you do the following:

  • You remember the next node of current so that you can continue from it
  • You set the link of current to be pointing to previous, which is the correct direction if you think about it
  • You change previous to be current, because now current also has its link set correctly
  • You change the first node that does not hae its link set correctly to be the one remebered in the first step

If you do that for all the nodes you can prove(with induction for instance). That the list will be correctly reversed.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.