-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path21.ts
109 lines (106 loc) · 2.11 KB
/
21.ts
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
/*
* @lc app=leetcode.cn id=21 lang=typescript
*
* [21] 合并两个有序链表
*
* https://leetcode.cn/problems/merge-two-sorted-lists/description/
*
* algorithms
* Easy (66.96%)
* Likes: 3592
* Dislikes: 0
* Total Accepted: 1.8M
* Total Submissions: 2.7M
* Testcase Example: '[1,2,4]\n[1,3,4]'
*
* 将两个升序链表合并为一个新的 升序 链表并返回。新链表是通过拼接给定的两个链表的所有节点组成的。
*
*
*
* 示例 1:
*
*
* 输入:l1 = [1,2,4], l2 = [1,3,4]
* 输出:[1,1,2,3,4,4]
*
*
* 示例 2:
*
*
* 输入:l1 = [], l2 = []
* 输出:[]
*
*
* 示例 3:
*
*
* 输入:l1 = [], l2 = [0]
* 输出:[0]
*
*
*
*
* 提示:
*
*
* 两个链表的节点数目范围是 [0, 50]
* -100
* l1 和 l2 均按 非递减顺序 排列
*
*
*/
class ListNode {
val: number
next: ListNode | null
constructor(val?: number, next?: ListNode | null) {
this.val = (val === undefined ? 0 : val)
this.next = (next === undefined ? null : next)
}
}
// @lc code=start
/**
* Definition for singly-linked list.
* class ListNode {
* val: number
* next: ListNode | null
* constructor(val?: number, next?: ListNode | null) {
* this.val = (val===undefined ? 0 : val)
* this.next = (next===undefined ? null : next)
* }
* }
*/
/**
* 解法 1: 2024.09.12
* 使用 dummy
*/
// function mergeTwoLists(list1: ListNode | null, list2: ListNode | null): ListNode | null {
// // 使用虚拟头节点
// let p = new ListNode(-1)
// let dummy = p
// while(list1 && list2){
// if(list1.val < list2.val){
// p.next = list1
// list1 = list1.next
// }else{
// p.next = list2
// list2= list2.next
// }
// p = p.next
// }
// if(list1){
// p.next = list1
// }
// if(list2){
// p.next = list2
// }
// return dummy.next
// };
/**
* 解法 2:2024.09.12
* 不使用dummy
* emmm, 感觉好复杂
*/
function mergeTwoLists(list1: ListNode | null, list2: ListNode | null): ListNode | null {
// if(list1 && list2)
}
// @lc code=end