码迷,mamicode.com
首页 > 编程语言 > 详细

Leetcode 147. Insertion Sort List 插入排序 in Java

时间:2016-09-07 22:34:48      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:

147. Insertion Sort List

  • Total Accepted: 80869
  • Total Submissions: 263074
  • Difficulty: Medium

 

Sort a linked list using insertion sort.

/**
 * Definition for singly-linked list.
 * public class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode(int x) { val = x; }
 * }
 */
public class Solution {
    public ListNode insertionSortList(ListNode head) {
        
        if(head==null || head.next==null) return head;
    
        ListNode newHead=new ListNode(0);//后面使用tmp.next与pre比较,所以增加一个新的newHead
        
        ListNode cur=head;
        
        while(cur!=null){
            ListNode next=cur.next;//放这里而不放在循环末尾,防止out of index
            ListNode tmp=newHead;
            while(tmp.next!=null && tmp.next.val<cur.val){
                tmp=tmp.next;
            }
            cur.next=tmp.next;
            tmp.next=cur;
            cur=next;
  
        }
       return newHead.next;
    }
}

 

  

Leetcode 147. Insertion Sort List 插入排序 in Java

标签:

原文地址:http://www.cnblogs.com/yanyuqi/p/5851033.html

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