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

147 Insertion Sort List 链表插入排序

时间:2018-04-06 15:26:14      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:ble   link   script   for   amp   problem   gpo   .com   struct   

用插入排序对链表进行排序。

详见:https://leetcode.com/problems/insertion-sort-list/description/

/**
 * Definition for singly-linked list.
 * struct ListNode {
 *     int val;
 *     ListNode *next;
 *     ListNode(int x) : val(x), next(NULL) {}
 * };
 */
class Solution {
public:
    ListNode* insertionSortList(ListNode* head) {
        ListNode* helper=new ListNode(-1);
        ListNode* cur=helper;
        while(head)
        {
            ListNode* next=head->next;
            cur=helper;
            while(cur->next&&cur->next->val<=head->val)
            {
                cur=cur->next;
            }
            head->next=cur->next;
            cur->next=head;
            head=next;
        }
        return helper->next;
    }
};

 

147 Insertion Sort List 链表插入排序

标签:ble   link   script   for   amp   problem   gpo   .com   struct   

原文地址:https://www.cnblogs.com/xidian2014/p/8727445.html

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