反转链表

思路:

 

 一开始需要将pre的next置空

代码:

 

 public ListNode reverseList(ListNode head) {
        ListNode pre = null;
        ListNode cur = head;
        while (cur != null){
            ListNode next = cur.next;
            cur.next = pre;
            pre = cur;
            cur = next;
        }


        return pre;
    }

 

posted @ 2020-12-27 15:28  冬马党  阅读(53)  评论(0编辑  收藏  举报