【LeetCode147】对链表进行插入排序

简介: The number of nodes in the list is in the range [1, 5000].-5000 <= Node.val <= 5000

一、对链表进行插入排序

image.png

栗子:

image.png

Input: head = [-1,5,3,4,0]
Output: [-1,0,3,4,5]

限制:


The number of nodes in the list is in the range [1, 5000].

-5000 <= Node.val <= 5000

二、思路

如果要遍历然后通过遍历每个链表节点,指针一个个改指向,比较麻烦,需要三个指针,节点数看起来不是很多,偷懒直接用STL进行排序然后再连在一起。前者方法后面补~


三、C++代码

/**
 * Definition for singly-linked list.
 * struct ListNode {
 *     int val;
 *     ListNode *next;
 *     ListNode() : val(0), next(nullptr) {}
 *     ListNode(int x) : val(x), next(nullptr) {}
 *     ListNode(int x, ListNode *next) : val(x), next(next) {}
 * };
 */
class Solution {
public:
    ListNode* insertionSortList(ListNode* head) {
        vector<ListNode*>vec;
        while(head){
            vec.push_back(head);
            head = head->next;
        }
        sort(vec.begin(), vec.end(), [&](ListNode* n1, ListNode* n2){
            return n1->val < n2->val;
        });
        for(int i = 0;i < vec.size(); i++){
            if(i == vec.size()-1){
                vec[i]->next = NULL;
            }else{
                vec[i]->next = vec[i+1];
            }
        }
        return vec.front();
    }
};
相关文章
|
1月前
【力扣】-- 移除链表元素
【力扣】-- 移除链表元素
34 1
|
1月前
Leetcode第21题(合并两个有序链表)
这篇文章介绍了如何使用非递归和递归方法解决LeetCode第21题,即合并两个有序链表的问题。
48 0
Leetcode第21题(合并两个有序链表)
|
1月前
LeetCode第二十四题(两两交换链表中的节点)
这篇文章介绍了LeetCode第24题的解法,即如何通过使用三个指针(preNode, curNode, curNextNode)来两两交换链表中的节点,并提供了详细的代码实现。
17 0
LeetCode第二十四题(两两交换链表中的节点)
|
1月前
Leetcode第十九题(删除链表的倒数第N个节点)
LeetCode第19题要求删除链表的倒数第N个节点,可以通过快慢指针法在一次遍历中实现。
40 0
Leetcode第十九题(删除链表的倒数第N个节点)
|
1月前
|
索引
力扣(LeetCode)数据结构练习题(3)------链表
力扣(LeetCode)数据结构练习题(3)------链表
77 0
|
1月前
【LeetCode 10】142. 环形链表 II
【LeetCode 10】142. 环形链表 II
21 0
|
1月前
【LeetCode 09】19 删除链表的倒数第 N 个结点
【LeetCode 09】19 删除链表的倒数第 N 个结点
16 0
|
1月前
【LeetCode 08】206 反转链表
【LeetCode 08】206 反转链表
12 0
|
1月前
【LeetCode 06】203.移除链表元素
【LeetCode 06】203.移除链表元素
29 0
|
3月前
|
算法
LeetCode第24题两两交换链表中的节点
这篇文章介绍了LeetCode第24题"两两交换链表中的节点"的解题方法,通过使用虚拟节点和前驱节点技巧,实现了链表中相邻节点的交换。
LeetCode第24题两两交换链表中的节点