-
Notifications
You must be signed in to change notification settings - Fork 0
/
MergeTwoLists.cpp
77 lines (65 loc) · 2.11 KB
/
MergeTwoLists.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
//
// Created by Wanhui on 2/23/20.
//
#include <cstdlib>
#include "MergeTwoLists.h"
ListNode *Solution25::mergeTwoLists(ListNode *l1, ListNode *l2) {
// 判断l1与l2是否为空的情况
// 包含了l1、l2同时为空的可能
if (l1 == nullptr) {
return l2;
} else if (l2 == nullptr) {
return l1;
}
// 对合并链表的头节点初始化
// 下面两种方式都可
auto *head = (ListNode*)malloc(sizeof(ListNode));
// ListNode *head = new ListNode(1);
// 设置插入节点
ListNode *node = head;
// 当两链表均未访问到空节点时进行值比较
while (l1 != nullptr && l2!= nullptr){
if(l1->val < l2->val){
// l1头节点的值较小时,
// 将该节点插入node节点的next节点
// WARNing: 不要插入node节点,
// 不然后面node=node->next会访问空指针
node->next = l1;
// l1指向链表的next节点
l1 = l1->next;
} else{
node->next = l2;
l2 = l2->next;
}
// node节点指向next节点
// 更新next节点的值
node = node->next;
}
// l1 或者 l2 为空时,
// 将另一链表剩余部分全部插到合并链表后即可
node->next = (l1 == nullptr ? l2 : l1);
// 因为最开始是插入到node节点的next节点
// 所以返回的是head节点的next节点
return head->next;
}
ListNode *Solution25::mergeTwoLists2(ListNode *l1, ListNode *l2) {
// 判断l1与l2是否为空的情况
// 包含了l1、l2同时为空的可能
if (l1 == nullptr) {
return l2;
} else if (l2 == nullptr) {
return l1;
}
ListNode *head = nullptr;
// 对l1和l2当前头节点的值进行比较
if(l1->val < l2->val){
// l1头节点的值较小,则将该节点插入合并链表中
head = l1;
// 递归函数返回合并链表的下一个节点
head->next = mergeTwoLists(l1->next, l2);
}else{
head = l2;
head->next = mergeTwoLists(l1, l2->next);
}
return head;
}