13.Merge k Sorted Lists

本文介绍了一种使用映射与链表合并的高效算法,通过映射值和链表指针,实现时间复杂度为O(N),空间复杂度也为O(N)的优化。详细解释了算法步骤,并提供了代码实现。
    思路:利用map<int,vector<ListNode*> >
做值和指针的映射,最后将指针按值依次链接起来,
时间复杂度O(N),空间O(N)    
    Merge k sorted linked lists and
return it as one sorted list. Analyze and describe its complexity.      
/**
 * Definition for singly-linked list.
 * struct ListNode {
 *     int val;
 *     ListNode *next;
 *     ListNode(int x) : val(x), next(NULL) {}
 * };
 */
 /*

 */
class Solution {
public:
    ListNode* mergeKLists(vector<ListNode*>& lists) {
        map<int,vector<ListNode*> > maps;
        for(int i=0;i<lists.size();++i)
        {
            while(lists[i]!=NULL)
            {
                maps[lists[i]->val].push_back(lists[i]);
                lists[i] = lists[i]->next;
            }
        }
        ListNode *now=NULL,*pre=NULL,*head;
        map<int,vector<ListNode*> >::const_iterator it = maps.begin();
        if(it!=maps.end()){
                head = (it->second)[0];
        }
        else head = NULL;
        while(it!=maps.end())
        {
            cout<<(it->second).size()<<endl;
            for(int k=0;k<(it->second).size();++k)
            {
                pre = now;
                now = (it->second)[k];
                if(pre!=NULL)pre->next = now;
            }
            it++;
        }
        return head;
    }
};

转载于:https://www.cnblogs.com/freeopen/p/5483010.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值