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

Leetcode:Insertion Sort List

时间:2015-02-11 22:01:01      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:insertion sort list   插入排序   

Sort a linked list using insertion sort.

插入排序:每步将一个待排序的纪录,按其关键码值的大小插入前面已经排序的文件中适当位置上,直到全部插入完为止。

实现代码:

class Solution
{
public:
    ListNode *insertionSortList(ListNode *head)
    {
        if(head==NULL || head->next==NULL) return head;
        ListNode *cur=head;
        ListNode *helper=new ListNode(0);
        ListNode *pre;
        while(cur)
        {
            ListNode *next=cur->next;
            pre=helper;
            while(pre->next!=NULL && pre->next->val<cur->val)
            {
                pre=pre->next;
            }
            cur->next=pre->next;
            pre->next=cur;
            cur=next;
        }
        return helper->next;
    }
};


Leetcode:Insertion Sort List

标签:insertion sort list   插入排序   

原文地址:http://blog.csdn.net/wolongdede/article/details/43738351

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