首页 > 其他 > 详细

LeetCode 23. 合并K个升序链表

时间:2020-11-09 21:32:50      阅读:27      评论:0      收藏:0      [点我收藏+]

思路
使用队列将每个链表元素放入,每次获取最小的元素加入到链表中
实现代码

class Solution {
   public ListNode mergeKLists(ListNode[] lists) {
        Queue<ListNode> heap = new PriorityQueue<>(new Comparator<ListNode>() {
            @Override
            public int compare(ListNode o1, ListNode o2) {
                return o1.val - o2.val;
            }
        });
        ListNode dummy = new ListNode(-1);
        ListNode tail = dummy;
        for (ListNode listNode : lists){
            if(listNode!=null) heap.offer(listNode);
        }
        while (!heap.isEmpty()){
            ListNode node = heap.poll();
            tail = tail.next = node;
            if(node.next !=null) heap.offer(node.next);
        }
        return dummy.next;
    }
}

LeetCode 23. 合并K个升序链表

原文:https://www.cnblogs.com/zykBlog/p/13950761.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!