-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
68 lines (59 loc) · 1.06 KB
/
main.go
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
package main
import (
"fmt"
)
/*
将两个有序链表合并为一个新的有序链表并返回。新链表是通过拼接给定的两个链表的所有节点组成的。
示例:
输入:1->2->4, 1->3->4
输出:1->1->2->3->4->4
*/
// ListNode ListNode
type ListNode struct {
Val int
Next *ListNode
}
func fillData(nums int) *ListNode {
head := new(ListNode)
cur := head
for nums > 0 {
m := nums % 10
cur.Next = new(ListNode)
cur.Next.Val = m
cur = cur.Next
nums /= 10
}
return head.Next
}
func trans(header *ListNode) {
for header != nil {
fmt.Printf("%d -> ", header.Val)
header = header.Next
}
fmt.Println()
}
func main() {
num1 := fillData(421)
trans(num1)
num2 := fillData(431)
trans(num2)
target := mergeTwoLists(num1, num2)
trans(target)
}
func mergeTwoLists(l1 *ListNode, l2 *ListNode) *ListNode {
if l1 == nil {
return l2
}
if l2 == nil {
return l1
}
res := new(ListNode)
if l1.Val >= l2.Val {
res = l2
res.Next = mergeTwoLists(l1, l2.Next)
} else {
res = l1
res.Next = mergeTwoLists(l1.Next, l2)
}
return res
}