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

LeetCode 23. Merge k Sorted Lists

时间:2019-04-23 17:10:05      阅读:116      评论:0      收藏:0      [点我收藏+]

标签:link   return   bool   new   opera   ble   链接   lis   class   

题目链接
n是总共的数.. k为k个链表
并且学习了优先队列的比较器如何写......

/**
 * Definition for singly-linked list.
 * struct ListNode {
 *     int val;
 *     ListNode *next;
 *     ListNode(int x) : val(x), next(NULL) {}
 * };
 */

class Solution {
public:
    struct cmp
    {
        bool operator() (const ListNode* a,const ListNode* b)
        {
            return a->val  > b->val;
        }
    };
    
    ListNode* mergeKLists(vector<ListNode*>& lists) {
        priority_queue<ListNode*,vector<ListNode*>, cmp> que;
        for(int i=0; i<lists.size(); i++) {
            if(lists[i])
                que.push(lists[i]);
        }
        ListNode *first = new ListNode(-0x3f3f3f3f);
        ListNode *cur = first;
        while(!que.empty()) {
            ListNode *top = que.top();
            que.pop();
            if(top) {
                first->next = top;
                first = first->next;
                if(first && first->next) {
                    que.push(first->next);
                }    
            } 
        }
        // first->next = NULL;
        return cur->next;
    }
};

LeetCode 23. Merge k Sorted Lists

标签:link   return   bool   new   opera   ble   链接   lis   class   

原文地址:https://www.cnblogs.com/Draymonder/p/10757280.html

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