题解 | #单链表的排序#

单链表的排序

https://www.nowcoder.com/practice/f23604257af94d939848729b1a5cda08

//学会使用 priority_queue,默认大顶堆,pop后从大到小排序。
class Solution {
public:
    /**
     *
     * @param head ListNode类 the head node
     * @return ListNode类
     */
    ListNode* sortInList(ListNode* head) {
        // write code here
        priority_queue<pair<int,ListNode*>> nQueue;
        ListNode* nhead = head;
        ListNode* nList = new ListNode(0);
        ListNode* listHead;
        while (nhead)
        {
            nQueue.push(pair<int, ListNode*>(nhead->val, nhead ) );
            nhead = nhead->next;
        }
        while (!nQueue.empty())
        {
            listHead = nList->next;
            nQueue.top().second->next = listHead;
            nList->next = nQueue.top().second;
            nQueue.pop();
            
        }
        //nList->next = nullptr;
        return nList->next;
    }
};

全部评论

相关推荐

一名愚蠢的人类:多少games小鬼留下了羡慕的泪水
投递荣耀等公司10个岗位
点赞 评论 收藏
分享
不愿透露姓名的神秘牛友
10-12 10:48
已编辑
秋招之苟:邻居家老哥19届双2硕大厂开发offer拿遍了,前几天向他请教秋招,他给我看他当年的简历,0实习实验室项目技术栈跟开发基本不沾边😂,我跟他说这个放在现在中厂简历都过不了
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务