147 Insertion Sort List 链表插入排序

Posted lina2014

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了147 Insertion Sort List 链表插入排序相关的知识,希望对你有一定的参考价值。

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

详见: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 链表插入排序的主要内容,如果未能解决你的问题,请参考以下文章

[leetcode sort]147. Insertion Sort List

147. Insertion Sort List

Leetcode147. Insertion Sort List

LeetCode 147. Insertion Sort List

LeetCode 147. Insertion Sort List

147. Insertion Sort List