leetcode_21. 合并两个有序链表
目录:
合并两个有序链表
题目
将两个有序链表合并为一个新的有序链表并返回。新链表是通过拼接给定的两个链表的所有节点组成的。
示例: 输入:1->2->4, 1->3->4 输出:1->1->2->3->4->4
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/merge-two-sorted-lists
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
思路
新建一个结点,遍历两个链表,取小的往新结点上接
- 被取到的链表往前遍历
- 新链表创建一个头节点指针,把这个指针赋值给游标结点
- 游标结点往前走,接收接上来的结点
- 最后结果为头节点的
Next
解答
type ListNode struct {
Val int
Next *ListNode
}
func mergeTwoLists(l1 *ListNode, l2 *ListNode) *ListNode {
pre := &ListNode{}
cursor := pre
for l1 != nil && l2 != nil {
if l1.Val > l2.Val {
cursor.Next = l2
l2 = l2.Next
} else {
cursor.Next = l1
l1 = l1.Next
}
cursor = cursor.Next // 游标结点也要前进
}
if l1 != nil {
cursor.Next = l1
} else {
cursor.Next = l2
}
return pre.Next
}
// 执行用时 :4 ms, 在所有 Go 提交中击败了67.48%的用户
// 内存消耗 :2.5 MB, 在所有 Go 提交中击败了86.48%的用户
优化
无