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

[LeetCode 题解]: Insertion Sort List

时间:2014-07-29 10:54:26      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   strong   io   for   div   

Sort a linked list using insertion sort.

题目要求:链表的插入排序,由于没有时间复杂度的要求,可以直接循环操作。

/**
 * Definition for singly-linked list.
 * struct ListNode {
 *     int val;
 *     ListNode *next;
 *     ListNode(int x) : val(x), next(NULL) {}
 * };
 */
class Solution {
public:
    ListNode* insert(ListNode* head,int num){
        ListNode *node = new ListNode(num);
        if(head==NULL || num <= head->val){
            node->next=head;
            return node;
        }
        
        ListNode *pre = head;
        ListNode *tail = head->next;
        while(tail!=NULL && num > tail->val){  // 一定要注意tail!=NULL 先决条件
                pre= tail;
                tail=tail->next;
        }
        node->next = pre->next;
        pre->next = node;
        return head;
        
    }
    ListNode* insertionSortList(ListNode *head){
        if(head==NULL || head->next==NULL) return head;
        ListNode *tmp = head;
        ListNode* ans=NULL;
        while(tmp!=NULL){
            ans = insert(ans,tmp->val);
            tmp =tmp->next;
        }
        return ans;
    }
};

转载请注明出处: http://www.cnblogs.com/double-win/ 谢谢!

[LeetCode 题解]: Insertion Sort List,布布扣,bubuko.com

[LeetCode 题解]: Insertion Sort List

标签:style   blog   http   color   strong   io   for   div   

原文地址:http://www.cnblogs.com/double-win/p/3873881.html

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