水下功夫做透,水上才能顺风顺水。

翻转链表

    public ListNode reverseList(ListNode head) {
        if(head==null || head.next ==null){
            return head;
        }
        ListNode cur = head.next;
        head.next = null;
        while(cur!=null){
            ListNode tmp = cur.next;//保留后面的链表头
            //处理当前结点
            cur.next = head;
            head = cur;
            cur = tmp;  
        }
        return head;
    }        

 

posted @ 2022-03-06 13:47  北方寒士  阅读(24)  评论(0编辑  收藏  举报