码迷,mamicode.com
首页 > 其他好文 > 详细

单链表的反转

时间:2017-09-25 14:31:46      阅读:196      评论:0      收藏:0      [点我收藏+]

标签:class   tno   ret   log   ==   node   list   nod   lis   

单链表的反转

    public ListNode ReverseList(ListNode head) {
        
        if(head == null)return null;
        
        ListNode pre = null;
        ListNode next = null;
        
        while(head != null){
            next = head.next;
            head.next = pre;
            pre = head;
            head = next;
        }
        return pre;

    }

 

单链表的反转

标签:class   tno   ret   log   ==   node   list   nod   lis   

原文地址:http://www.cnblogs.com/liaoxiaolao/p/7591401.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!