剑指Offer--反转链表

问题描述:输入一个链表,反转链表后,输出新链表的表头。

思路:反转一个链表只需要调整链表中的指针方向。

 

代码:

/*
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;
        ListNode pNext = null;
        while(pNode!=null){
            pNext = pNode.next;
            if(pNext==null)
                newHead = pNode;
            pNode.next = pPrev;
            pPrev = pNode;
            pNode = pNext;
        }
        return newHead;
    }
}

 

posted @ 2018-08-15 16:27  菠菜汤圆  阅读(98)  评论(0编辑  收藏  举报