合并K个有序链表,并且作为一个有序链表的形式返回。分析并描述它的复杂度。

详见:https://leetcode.com/problems/merge-k-sorted-lists/description/

实现语言:Java

/**
* Definition for singly-linked list.
* public class ListNode {
* int val;
* ListNode next;
* ListNode(int x) { val = x; }
* }
*/
class Solution {
public ListNode mergeKLists(ListNode[] lists) {
int n=lists.length;
if(n==0){
return null;
}
while(n>1){
int k=(n+1)/2;
for(int i=0;i<n/2;++i){
lists[i]=mergeTwoLists(lists[i],lists[i+k]);
}
n=k;
}
return lists[0];
}
private ListNode mergeTwoLists(ListNode l1,ListNode l2){
if(l1==null&&l2==null){
return null;
}
if(l1==null){
return l2;
}
if(l2==null){
return l1;
}
ListNode head=new ListNode(-1);
ListNode cur=head;
while(l1!=null&&l2!=null){
if(l1.val<l2.val){
cur.next=l1;
l1=l1.next;
}else{
cur.next=l2;
l2=l2.next;
}
cur=cur.next;
}
cur.next=l1!=null?l1:l2;
return head.next;
}
}

参考:https://www.cnblogs.com/grandyang/p/4606710.html

最新文章

  1. Hello Web API系列教程——Web API与国际化
  2. internet 协议入门
  3. Java 枚举7常见种用法
  4. (转)打印相关_C#图片处理Bitmap位图缩放和剪裁
  5. PC版淘宝UWP揭秘
  6. Windows Azure Service Bus (1) 基础
  7. [转]fastjson
  8. [zz] 英文大写缩写前要加THE吗
  9. 报错&quot;the geometry has no Z values&quot;处理
  10. iOS 开发之 Xcode6 创建真机调试证书
  11. 做个伪IE浏览器?!【来自官网】
  12. 每天一个Linux命令(2): ls
  13. iText操作word文档总结
  14. 框架基础:ajax设计方案(六)--- 全局配置、请求格式拓展和优化、请求二进制类型、浏览器错误搜集以及npm打包发布
  15. CDOJ 1964 命运石之门【最短路径Dijkstra/BFS】
  16. Comparing Code Playgrounds Codepen, JSFiddle, JS Bin, Dabblet, CSS Deck, and Liveweave
  17. 【已解决】Android微信开放平台,申请移动应用的 应用签名 如何获取
  18. k8s实战之Service
  19. oozie 运行demo
  20. 何时开始phonics学习及配套阅读训练zz

热门文章

  1. 【转】LCS
  2. DDoS攻防战(二):CC攻击工具实现与防御理论--删除
  3. Unreal引擎术语表
  4. CentOS7下yum方式安装mysql5.6
  5. 编写html页面时常见的问题(转)
  6. JSK 糟糕的bug
  7. Robots.txt在项目中的运用
  8. 20. Linux提权:从入门到放弃
  9. EasyUI 在mvc中的引入与使用
  10. jquery事件之事件处理函数