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

【leetcode】Insertion Sort List

时间:2015-05-29 08:34:03      阅读:103      评论:0      收藏:0      [点我收藏+]

标签:

Sort a linked list using insertion sort.

 

 1 class Solution {
 2 public:
 3     ListNode* insertionSortList(ListNode* head) {
 4         ListNode *newhead=new ListNode(-1);
 5         while(head!=NULL)
 6         {
 7             //保存head位置
 8             ListNode *tmp=head->next;
 9             ListNode *cur=newhead;
10 
11             while(cur->next!=NULL&&cur->next->val<head->val)
12             {
13                 cur=cur->next;
14             }
15             //插入
16             head->next=cur->next;
17             cur->next=head;
18             //恢复head
19             head=tmp;
20         }
21 
22         return newhead->next;
23     }
24 };

 

【leetcode】Insertion Sort List

标签:

原文地址:http://www.cnblogs.com/jawiezhu/p/4537591.html

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