《每周一道算法题》(三)合并K个有序链表

题目描述

合并 k 个排序链表,返回合并后的排序链表。请分析和描述算法的复杂度。

示例:

输入:
[
  1->4->5,
  1->3->4,
  2->6
]
输出: 1->1->2->3->4->4->5->6
一 思路一 最笨方法
  • 将所有节点添加到一个数组中
    • 对数组中的节点从小到大进行排序
    • 从数组中从小到大依次取出节点,串成链表

图解

image.png
  • 核心代码如下
- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.
    
    // 构造三个链表
    LinkNode *k1 = [[LinkNode alloc] initWithPrev:nil element:@(1) next:nil];
    LinkNode *k2 = [[LinkNode alloc] initWithPrev:k1 element:@(4) next:nil];
    LinkNode *k3 = [[LinkNode alloc] initWithPrev:k2 element:@(7) next:nil];
    
    LinkNode *k4 = [[LinkNode alloc] initWithPrev:nil element:@(2) next:nil];
    LinkNode *k5 = [[LinkNode alloc] initWithPrev:k4 element:@(5) next:nil];
    LinkNode *k6 = [[LinkNode alloc] initWithPrev:k5 element:@(8) next:nil];
    
    LinkNode *k7 = [[LinkNode alloc] initWithPrev:nil element:@(3) next:nil];
    LinkNode *k8 = [[LinkNode alloc] initWithPrev:k7 element:@(6) next:nil];
    LinkNode *k9 = [[LinkNode alloc] initWithPrev:k8 element:@(9) next:nil];
    
    // 方法一
    NSArray *linkNodes = @[k1,k4,k7];
    LinkNode *k = [self mergeManyLists:linkNodes];
    while (k) {
        NSLog(@"%@",[k description]);
        k = k.next;
    }
}

/// 方法一:合并N个有序链表
- (LinkNode *)mergeManyLists:(NSArray *)linkNodes {
    if (!linkNodes || linkNodes.count == 0) {
        return nil;
    }
    NSMutableArray *nodes = [NSMutableArray array];
    for (LinkNode *node in linkNodes) {
        __strong LinkNode *strongNode = node;
        while (strongNode != nil) {
            [nodes addObject:strongNode];
            strongNode = strongNode.next;
        }
    }
    // 排序
    NSArray *newNodes = [nodes sortedArrayUsingComparator:^NSComparisonResult(LinkNode *obj1, LinkNode *obj2) {
        if (obj1.value > obj2.value) {
            return NSOrderedDescending;
        }
        return NSOrderedAscending;
    }];
    LinkNode *head = [[LinkNode alloc] init];
    LinkNode *cur = head;
    for (LinkNode *node in newNodes) {
        cur = cur.next = node;
    }
    return head.next;
}
  • 运行结果
2019-11-12 23:12:02.674864+0800 02_MergeTwoLists[30509:1059927] (null)_1_2
2019-11-12 23:12:02.675147+0800 02_MergeTwoLists[30509:1059927] 1_2_3
2019-11-12 23:12:02.675315+0800 02_MergeTwoLists[30509:1059927] 2_3_4
2019-11-12 23:12:02.675583+0800 02_MergeTwoLists[30509:1059927] 3_4_5
2019-11-12 23:12:02.675706+0800 02_MergeTwoLists[30509:1059927] 4_5_6
2019-11-12 23:12:02.675810+0800 02_MergeTwoLists[30509:1059927] 5_6_7
2019-11-12 23:12:02.675941+0800 02_MergeTwoLists[30509:1059927] 6_7_8
2019-11-12 23:12:02.676053+0800 02_MergeTwoLists[30509:1059927] 7_8_9
2019-11-12 23:12:02.676159+0800 02_MergeTwoLists[30509:1059927] 8_9_null

时间复杂度:O(nlogn)
空间复杂度:O(n)

二 思路二 逐一比较
image.png
  • 核心代码如下
/// 方法二 逐一比较
- (LinkNode *)mergeManyLists2:(NSMutableArray<LinkNode *> *)linkNodes {
    if (linkNodes == nil || linkNodes.count == 0) {
        return nil;
    }
    LinkNode *head = [[LinkNode alloc] init];
    LinkNode *cur = head;
    
    while (true) {
        int minIndex = -1;
        for (int i = 0; i < linkNodes.count; i++) {
            if (linkNodes[i] == nil || linkNodes[i].element == nil) {
                continue;
            }
            
            if (minIndex == -1 || linkNodes[i].value < linkNodes[minIndex].value) {
                minIndex = i;
            }
        }
        if (minIndex  == -1) {
            break;
        }
        
        cur = cur.next = linkNodes[minIndex];
        linkNodes[minIndex] = linkNodes[minIndex].next;
    }
    return head.next;
}
  • 测试代码
- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.
    
    LinkNode *nilNode = [[LinkNode alloc] initWithPrev:nil element:nil next:nil];
    
    // 构造三个链表
    LinkNode *k1 = [[LinkNode alloc] initWithPrev:nil element:@(1) next:nil];
    LinkNode *k2 = [[LinkNode alloc] initWithPrev:k1 element:@(4) next:nil];
    LinkNode *k3 = [[LinkNode alloc] initWithPrev:k2 element:@(7) next:nil];
    
    LinkNode *k4 = [[LinkNode alloc] initWithPrev:nil element:@(2) next:nil];
    LinkNode *k5 = [[LinkNode alloc] initWithPrev:k4 element:@(5) next:nil];
    LinkNode *k6 = [[LinkNode alloc] initWithPrev:k5 element:@(8) next:nil];

    LinkNode *k7 = [[LinkNode alloc] initWithPrev:nil element:@(3) next:nil];
    LinkNode *k8 = [[LinkNode alloc] initWithPrev:k7 element:@(6) next:nil];
    LinkNode *k9 = [[LinkNode alloc] initWithPrev:k8 element:@(9) next:nil];
   
    // 为了需要,每个节点最后是一个空的节点
    k3.next = nilNode;
    k6.next = nilNode;
    k9.next = nilNode;
    
    // 方法二 逐一比较
    NSMutableArray *linkNodes = [NSMutableArray arrayWithArray:@[k1,k4,k7]];
    LinkNode *k = [self mergeManyLists2:linkNodes];
    while (k) {
        NSLog(@"%@",[k description]);
        k = k.next;
    }
}
  • 运行结果如下
2019-11-17 10:43:34.914883+0800 02_MergeTwoLists[40077:1519139] (null)_1_2
2019-11-17 10:43:34.915081+0800 02_MergeTwoLists[40077:1519139] 1_2_3
2019-11-17 10:43:34.915177+0800 02_MergeTwoLists[40077:1519139] 2_3_4
2019-11-17 10:43:34.915274+0800 02_MergeTwoLists[40077:1519139] 3_4_5
2019-11-17 10:43:34.915491+0800 02_MergeTwoLists[40077:1519139] 4_5_6
2019-11-17 10:43:34.915623+0800 02_MergeTwoLists[40077:1519139] 5_6_7
2019-11-17 10:43:34.915744+0800 02_MergeTwoLists[40077:1519139] 6_7_8
2019-11-17 10:43:34.915865+0800 02_MergeTwoLists[40077:1519139] 7_8_9
2019-11-17 10:43:34.915981+0800 02_MergeTwoLists[40077:1519139] 8_9_(null)
2019-11-17 10:43:34.916102+0800 02_MergeTwoLists[40077:1519139] 9_(null)_null
三 思路三-逐一两两合并
image.png
  • 核心代码
/// 方法三 逐一两两合并
- (LinkNode *)mergeManyLists3:(NSMutableArray<LinkNode *> *)linkNodes {
    if (linkNodes == nil || linkNodes.count == 0) {
        return nil;
    }
    for (int i = 1; i < linkNodes.count; i++) {
        linkNodes[0] = [self mergeTwoLists:linkNodes[0] k2:linkNodes[i]];
    }
    return linkNodes[0];
}

/// 方法一:递归
/// 1.只要是用到递归,首先要搞清楚一个问题,这个递归函数的功能是什么
/// 2.递归基:边界
- (LinkNode *)mergeTwoLists:(LinkNode *)k1 k2:(LinkNode *)k2 {
    if (k1 == nil) return k2;
    if (k2 == nil) return k1;
    
    if (k1.value <= k2.value) {
        k1.next = [self mergeTwoLists:k1.next k2:k2];
        return k1;
    } else {
        k2.next = [self mergeTwoLists:k1 k2:k2.next];
        return k2;
    }
}
  • 测试代码
/// 方法三 逐一两两合并
NSMutableArray *linkNodes = [NSMutableArray arrayWithArray:@[k1,k4,k7]];
LinkNode *k = [self mergeManyLists3:linkNodes];
while (k) {
    NSLog(@"%@",[k description]);
    k = k.next;
}
  • 运行结果
2019-11-17 11:19:14.687574+0800 02_MergeTwoLists[40935:1548483] null_1_2
2019-11-17 11:19:14.687798+0800 02_MergeTwoLists[40935:1548483] 1_2_3
2019-11-17 11:19:14.687948+0800 02_MergeTwoLists[40935:1548483] 2_3_4
2019-11-17 11:19:14.688098+0800 02_MergeTwoLists[40935:1548483] 3_4_5
2019-11-17 11:19:14.688245+0800 02_MergeTwoLists[40935:1548483] 4_5_6
2019-11-17 11:19:14.688401+0800 02_MergeTwoLists[40935:1548483] 5_6_7
2019-11-17 11:19:14.688515+0800 02_MergeTwoLists[40935:1548483] 6_7_8
2019-11-17 11:19:14.688620+0800 02_MergeTwoLists[40935:1548483] 7_8_9
2019-11-17 11:19:14.688727+0800 02_MergeTwoLists[40935:1548483] 8_9_null
四 思路四-优先级队列(小顶堆)
image.png
五 思路五-分治策略
image.png
  • 核心代码
/// 方法五 - 分治策略
- (LinkNode *)mergeManyLists5:(NSMutableArray<LinkNode *> *)linkNodes {
    if (linkNodes == nil || linkNodes.count == 0) {
        return nil;
    }
    
    int step = 1;
    while (step < linkNodes.count) {
        int nextStep = step << 1;
        for (int i = 0; i + step < linkNodes.count; i += nextStep) {
            linkNodes[i] = [self mergeTwoLists:linkNodes[i] k2:linkNodes[i + step]];
        }
        step = nextStep;
    }
    return linkNodes[0];
}
  • 运行结果
2019-11-17 21:57:36.968482+0800 02_MergeTwoLists[54576:1953555] null_1_2
2019-11-17 21:57:36.968663+0800 02_MergeTwoLists[54576:1953555] 1_2_3
2019-11-17 21:57:36.968778+0800 02_MergeTwoLists[54576:1953555] 2_3_4
2019-11-17 21:57:36.968890+0800 02_MergeTwoLists[54576:1953555] 3_4_5
2019-11-17 21:57:36.969008+0800 02_MergeTwoLists[54576:1953555] 4_5_6
2019-11-17 21:57:36.969148+0800 02_MergeTwoLists[54576:1953555] 5_6_7
2019-11-17 21:57:36.969267+0800 02_MergeTwoLists[54576:1953555] 6_7_8
2019-11-17 21:57:36.969376+0800 02_MergeTwoLists[54576:1953555] 7_8_9
2019-11-17 21:57:36.969485+0800 02_MergeTwoLists[54576:1953555] 8_9_null

本文参考MJ老师的每日一道算法题


项目链接地址 - 03_MergeManyLists


每周一道算法题 - 笔记


最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,864评论 6 494
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,175评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,401评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,170评论 1 286
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,276评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,364评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,401评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,179评论 0 269
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,604评论 1 306
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,902评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,070评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,751评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,380评论 3 319
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,077评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,312评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,924评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,957评论 2 351

推荐阅读更多精彩内容