首页 > 其他 > 详细

[LeetCode 题解]: Insertion Sort List

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

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

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!