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

链表 插入排序

时间:2015-07-21 20:17:21      阅读:107      评论:0      收藏:0      [点我收藏+]

标签:

/**注意往链表头插入元素的情况
 * 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) {
        if((head==NULL)||(head->next==NULL)) return head;
        ListNode *res=head;
        head = head->next;
        res->next=NULL;
       
        while(head){
            ListNode *p=res;
            while(p->next && (p->next->val) <= (head->val)){
               p=p->next;
            }
            if((p->val) > (head->val)){                  //这几个要注意顺序
                ListNode *temp = head->next;
                head->next=p;
                res=head;
                head=temp;
                
            }
            else{                                          //注意顺序
            
            ListNode *temp = p->next;
            p->next=head;
            head=head->next;
            p->next->next=temp;
            }
            
            }
        return res;
        }
};

 

链表 插入排序

标签:

原文地址:http://www.cnblogs.com/julie-yang/p/4665463.html

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