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

[LintCode] Insertion Sort List

时间:2015-11-17 12:21:00      阅读:128      评论:0      收藏:0      [点我收藏+]

标签:

Insertion Sort List

Sort a linked list using insertion sort.

Example

Given 1->3->2->0->null, return 0->1->2->3->null.

 

SOLUTION:

插入排序的思路就是从头开始扫过去,然后遇到比当前点小的点,就把这个点插到当前点之前。插入之后这次操作就完了,从头再扫一遍,直到扫到最后一个点位置。

代码:

技术分享
/**
 * Definition for ListNode.
 * public class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode(int val) {
 *         this.val = val;
 *         this.next = null;
 *     }
 * }
 */ 
public class Solution {
    /**
     * @param head: The first node of linked list.
     * @return: The head of linked list.
     */
    public ListNode insertionSortList(ListNode head) {
        if (head == null){
            return head;
        }
        ListNode dummy = new ListNode(0);
        // ListNode node = dummy;
        while (head != null){
            ListNode node = dummy;
            while (node.next != null && node.next.val < head.val){
                node = node.next;
            }
            ListNode temp = head.next;
            head.next = node.next;
            node.next = head;
            head = temp;
        }
        return dummy.next;
    }
}
View Code

 

[LintCode] Insertion Sort List

标签:

原文地址:http://www.cnblogs.com/tritritri/p/4971033.html

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