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

LeetCode - Merge k Sorted Lists

时间:2017-07-15 13:49:38      阅读:110      评论:0      收藏:0      [点我收藏+]

标签:ons   vector   turn   ++   ted   solution   return   key   link   


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

class Solution {

public:
    struct compare {
    bool operator()(const ListNode* l, const ListNode* r) {
        return l->val > r->val;
    }
};
ListNode *mergeKLists(vector<ListNode *> &lists) { //priority_queue
    priority_queue<ListNode *, vector<ListNode *>, compare> key;
    for(int i = 0 ; i < lists.size() ; i ++){
            if(lists[i])
                key.push(lists[i]);
        }
        ListNode *head = new ListNode(0);
        ListNode *p = head;
        while(!(key.empty())){
            ListNode *fc = key.top();
            if(fc->next)
                key.push(fc->next);
            p->next = fc;
            p = fc;
            key.pop();
        }
    return head->next;
    }
};

LeetCode - Merge k Sorted Lists

标签:ons   vector   turn   ++   ted   solution   return   key   link   

原文地址:http://www.cnblogs.com/clover-xuqi/p/7182376.html

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