mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-01-11 02:58:13 +08:00
35 lines
954 B
HTML
35 lines
954 B
HTML
<p>将两个升序链表合并为一个新的 <strong>升序</strong> 链表并返回。新链表是通过拼接给定的两个链表的所有节点组成的。 </p>
|
||
|
||
<p> </p>
|
||
|
||
<p><strong>示例 1:</strong></p>
|
||
<img alt="" src="https://assets.leetcode.com/uploads/2020/10/03/merge_ex1.jpg" style="width: 662px; height: 302px;" />
|
||
<pre>
|
||
<strong>输入:</strong>l1 = [1,2,4], l2 = [1,3,4]
|
||
<strong>输出:</strong>[1,1,2,3,4,4]
|
||
</pre>
|
||
|
||
<p><strong>示例 2:</strong></p>
|
||
|
||
<pre>
|
||
<strong>输入:</strong>l1 = [], l2 = []
|
||
<strong>输出:</strong>[]
|
||
</pre>
|
||
|
||
<p><strong>示例 3:</strong></p>
|
||
|
||
<pre>
|
||
<strong>输入:</strong>l1 = [], l2 = [0]
|
||
<strong>输出:</strong>[0]
|
||
</pre>
|
||
|
||
<p> </p>
|
||
|
||
<p><strong>提示:</strong></p>
|
||
|
||
<ul>
|
||
<li>两个链表的节点数目范围是 <code>[0, 50]</code></li>
|
||
<li><code>-100 <= Node.val <= 100</code></li>
|
||
<li><code>l1</code> 和 <code>l2</code> 均按 <strong>非递减顺序</strong> 排列</li>
|
||
</ul>
|