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

Insertion Sort List

时间:2015-04-09 13:37:49      阅读:109      评论:0      收藏:0      [点我收藏+]

标签:

容易出错的点

1 不是原位排序,惊讶!!

2 要重新定位pre!!

public class Solution {
    public ListNode insertionSortList(ListNode head) {
        // 想清楚怎么插入就很简单啦
        if(head==null|| head.next ==null) return head;
        ListNode h =  new ListNode(-1);
      //  h.next = head; // 不是原位排序
        ListNode  cur = head;
        while(cur!=null){
            // 要重新定义pre的指向!!!
            ListNode pre = h;
            ListNode t = cur.next;
            while(pre.next!=null && pre.next.val<=cur.val){
                pre = pre.next;
            }
            cur.next = pre.next;
            pre.next = cur;
            cur = t;
        }
        return h.next;
    }
}

 

Insertion Sort List

标签:

原文地址:http://www.cnblogs.com/jiajiaxingxing/p/4409393.html

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