Leetcode 021 合并两个有序链表 ( Merge Two Sorted Lists ) 题解分析
题目介绍
Merge two sorted linked lists and return it as a sorted list. The list should be made by splicing together the nodes of the first two lists.
将两个升序链表合并为一个新的 升序 链表并返回。新链表是通过拼接给定的两个链表的所有节点组成的。
示例 1
输入:l1 = [1,2,4], l2 = [1,3,4]
输出:[1,1,2,3,4,4]
示例 2
输入: l1 = [], l2 = []
输出: []
示例 3
输入: l1 = [], l2 = [0]
输出: [0]
简要分析
这题是 Easy 的,看着也挺简单,两个链表进行合并,就是比较下大小,可能将就点的话最好就在两个链表中原地合并
题解代码
1 | public ListNode mergeTwoLists(ListNode l1, ListNode l2) { |