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

【LeetCode】Insertion Sort List

时间:2014-07-11 08:06:49      阅读:362      评论:0      收藏:0      [点我收藏+]

标签:链表

题目

Sort a linked list using insertion sort.

解答

链表无法像数组那样从后往前依次比较插入,只能从前往后;在链表首部添加一个哨兵可以稍微简化下代码,代码如下:

/**
 * Definition for singly-linked list.
 * public class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode(int x) {
 *         val = x;
 *         next = null;
 *     }
 * }
 */
public class Solution {
    public ListNode insertionSortList(ListNode head) {
        ListNode ret = new ListNode(-1);  
        ListNode cur = head;  
        ListNode pre = ret;  
          
        while(cur!=null){  
            ListNode tmp = cur;  
            cur=cur.next;  
            if(pre.next==null){  
                pre.next=tmp;  
                tmp.next=null;  
                pre=ret;  
            }else {  
                while(pre.next!=null&&pre.next.val<tmp.val){  
                    pre=pre.next;  
                }  
                tmp.next=pre.next;  
                pre.next=tmp;  
                pre=ret;  
            }  
        }  
        return ret.next;   
    }
}

---EOF---

【LeetCode】Insertion Sort List,布布扣,bubuko.com

【LeetCode】Insertion Sort List

标签:链表

原文地址:http://blog.csdn.net/navyifanr/article/details/37598011

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