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

leetcode:Insert Sort List

时间:2014-05-22 10:15:43      阅读:233      评论:0      收藏:0      [点我收藏+]

标签:leetcode   插入排序   单链表   

问题描述

对一个单链表进行插入排序,head指向第一个结点。

代码

/**
 * 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||head->next==NULL)
			return head;
		ListNode *pstart=new ListNode(0);//添加一个头指针以方便处理,设所有节点数据大于0
		pstart->next=head;
		ListNode *preCur=head,*cur=head->next;
		while(cur!=NULL)
		{
		    ListNode *prePos=pstart,* pos=pstart->next;
			while(pos->val<cur->val)
			{
				prePos=prePos->next;//prePos指向带插入位置的前方
				pos=pos->next;//pos指向待插入位置的后方
			}
			if(pos!=cur)
			{
				preCur->next=cur->next;
				cur->next=pos;
				prePos->next=cur;
				//preCur不变
				cur=preCur->next;
			}
			else
			{
				preCur=cur;
				cur=cur->next;
			}
		}
		head=pstart->next;
		delete pstart;
		return head;
	}
};

时间复杂度

O(N^2),相对于顺序存储减少移动次数。

leetcode:Insert Sort List,布布扣,bubuko.com

leetcode:Insert Sort List

标签:leetcode   插入排序   单链表   

原文地址:http://blog.csdn.net/u010367506/article/details/26135737

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