23. Merge k Sorted Lists(合并K个有序链表)

题目描述

Merge k sorted linked lists and return it as one sorted list. Analyze and describe its complexity.

Example:

Input:
[
1->4->5,
1->3->4,
2->6
]
Output: 1->1->2->3->4->4->5->6

方法思路

Approach1:

class Solution {
    //Runtime: 13 ms, faster than 54.98%
    //Memory Usage: 38.8 MB, less than 62.33% 
    public ListNode mergeKLists(ListNode[] lists) {
        if(lists.length == 0) return null;
        List<ListNode> listArray = new ArrayList<>();
        ListNode node = null;
        for(ListNode l : lists)
            listArray.add(l);
        while(listArray.size() > 1){
            node = mergeTwoSortedLists(listArray.get(0), listArray.get(1));
            listArray.remove(1);
            listArray.remove(0);
            listArray.add(node);
        }
        return listArray.get(0);
    }
    
    public ListNode mergeTwoSortedLists(ListNode l1, ListNode l2){
        if(l1 == null) return l2;
        else if(l2 == null) return l1;
        ListNode dummy = new ListNode(0), help = dummy;
        while(l1 != null && l2 != null){
            if(l1.val <= l2.val){
                help.next = l1;
                l1 = l1.next;
            }else{
                help.next = l2;
                l2 = l2.next;
            }
            help = help.next;
        }
        
        if(l1 != null)
            help.next = l1;
        else if(l2 != null)
            help.next = l2;
        
        return dummy.next;
    }
}

Approach2: a java solution based on Priority Queue

If someone understand how priority queue works, then it would be trivial to walk through the codes.

My question: is that possible to solve this question under the same time complexity without implementing the priority queue?

class Solution{
    public class Solution {
    public ListNode mergeKLists(List<ListNode> lists) {
        if (lists==null||lists.size()==0) return null;
        
        PriorityQueue<ListNode> queue = 
            new PriorityQueue<ListNode>(lists.size(),new Comparator<ListNode>(){
            @Override
            public int compare(ListNode o1,ListNode o2){
                if (o1.val<o2.val)
                    return -1;
                else if (o1.val==o2.val)
                    return 0;
                else 
                    return 1;
            }
        });
        
        ListNode dummy = new ListNode(0);
        ListNode tail=dummy;
        
        for (ListNode node:lists)
            if (node!=null)
                queue.add(node);
            
        while (!queue.isEmpty()){
            tail.next=queue.poll();
            tail=tail.next;
            
            if (tail.next!=null)
                queue.add(tail.next);
        }
        return dummy.next;
    }
}
}

Approach3: simple java Solution use recursion

public static ListNode mergeKLists(ListNode[] lists){
    return partion(lists,0,lists.length-1);
}

public static ListNode partion(ListNode[] lists,int s,int e){
    if(s==e)  return lists[s];
    if(s<e){
        int q=(s+e)/2;
        ListNode l1=partion(lists,s,q);
        ListNode l2=partion(lists,q+1,e);
        return merge(l1,l2);
    }else
        return null;
}

//This function is from Merge Two Sorted Lists.
public static ListNode merge(ListNode l1,ListNode l2){
    if(l1==null) return l2;
    if(l2==null) return l1;
    if(l1.val<l2.val){
        l1.next=merge(l1.next,l2);
        return l1;
    }else{
        l2.next=merge(l1,l2.next);
        return l2;
    }
}
  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值