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

Java for LintCode 链表插入排序

时间:2015-06-15 23:25:17      阅读:681      评论:0      收藏:0      [点我收藏+]

标签:

用插入排序对链表排序

解题思路:

最省时间的方法是使用优先级队列,但是无法通过,那就直接插入排序好了。

    public ListNode insertionSortList(ListNode head) {
		ListNode root = new ListNode(Integer.MIN_VALUE);
		while (head != null) {
			ListNode temp = root;
			while (temp.next != null && head.val >= temp.next.val)
				temp = temp.next;
			if(temp.next==null){
				temp.next=head;
				head=head.next;
				temp.next.next=null;
			}
			else{
				ListNode temp2 = temp.next;
				temp.next=head;
				head=head.next;
				temp.next.next=temp2;
			}
		}
		return root.next;
    }

 

Java for LintCode 链表插入排序

标签:

原文地址:http://www.cnblogs.com/tonyluis/p/4579295.html

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