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

Insertion Sort List

时间:2016-07-12 17:30:17      阅读:124      评论:0      收藏:0      [点我收藏+]

标签:

对链表进行插入排序,比对数组排序麻烦一点。

技术分享
ListNode *insertSortList(ListNode *head)
      {
          ListNode dummy(-1);
          for (ListNode *cur = head; cur != nullptr;)
          {
              //将当前结点插入到此结点之后
              auto Pos = findPos(&dummy, cur->val);
              //保存当前结点的下一个结点
              ListNode *temp = cur->next;
              //插入
              cur->next = Pos->next;
              Pos->next = cur;
              //继续下一个结点
              cur = temp;
          }
      }

      ListNode *findPos(ListNode *head, int val)
      {
          ListNode *pre = nullptr;
          for (ListNode *cur = head; cur != nullptr&&cur->val <= val; pre = cur, cur = cur->next);

          return pre;
      }
View Code

 

Insertion Sort List

标签:

原文地址:http://www.cnblogs.com/573177885qq/p/5663988.html

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