Cattle off net reversal list JAVA

topic:

After entering a list inverted list, the new list of the output header.

Problem solving:

Idea: Create four nodes pPrev, pNode, pNext,

/*
public class ListNode {
    int val;
    ListNode next = null;

    ListNode(int val) {
        this.val = val;
    }
}*/
public class Solution {
    public ListNode ReverseList(ListNode head) {
        if(head==null)
            return null;
        ListNode newHead = null;
        ListNode pNode = head;
        ListNode pPrev = null;
        while(pNode!=null){
            ListNode pNext = pNode.next;
            if(pNext==null)
                newHead = pNode;
            pNode.next = pPrev;
            pPrev = pNode;
            pNode = pNext;
        }
        return newHead;
    }
}

Guess you like

Origin www.cnblogs.com/yanhowever/p/12056780.html