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

lc 排序链表

时间:2020-05-24 23:59:47      阅读:102      评论:0      收藏:0      [点我收藏+]

标签:cli   tco   next   col   def   pre   display   ==   for   

链接:https://leetcode-cn.com/problems/sort-list/

代码:

技术图片
/**
 * Definition for singly-linked list.
 * struct ListNode {
 *     int val;
 *     ListNode *next;
 *     ListNode(int x) : val(x), next(NULL) {}
 * };
 */
class Solution {
public:
    ListNode* sortList(ListNode* head) {
        if(head == nullptr) return nullptr;
        ListNode* cur = head;
        vector<int> v;
        while(cur) {
            v.push_back(cur->val);
            cur = cur->next;
        }
        sort(v.begin(), v.end());
        cur = head;
        for(int i = 0; i < v.size(); i++) {
            cur->val = v[i];
            cur = cur->next;
        }
        return head;
    }
};
View Code

思路:把链表 copy 到数组中排序然后再重新返回到链表。也可递归,现在写

lc 排序链表

标签:cli   tco   next   col   def   pre   display   ==   for   

原文地址:https://www.cnblogs.com/FriskyPuppy/p/12953556.html

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