Question
Merge two sorted linked lists and return it as a new sorted list. The new list should be made by splicing together the nodes of the first two lists.
**Example 1 : **
**Input : ** l1 = [1,2,4],l2 = [1,3,4]
**Output : ** [1,1,2,3,4,4]
**Example 2 : **
**Input : ** l1 = [], l2 = []
**Output : ** []
**Example 3 : **
**Input : ** l1 = [], l2 = [0]
**Output : ** [0]
**Constraints : **
- The number of nodes in both lists is in the range
[0, 50]
. -100 <= Node.val <= 100
- Both
l1
andl2
are sorted in non-decreasing order.
Answer
思路一
**递归法 : ** 首先判断两个链表中的一个是否为空,如果有一个为空,那么就以这个链表为输出结果。为了保存其他两个链表,我就需要新建一个链表。因为要顺序保存,所有通过值大小的比较存入t,作t的头节点。之后t->next用递归的方式依次存入。时间复杂度为O(n),具体代码如下:
1 | /** |
思路二
**迭代法 : ** 首先设置一个前哨节点,为了之后输出方便。程序主体:通过值的比较,把每个链表的值都挨个存入cur链表中。while判断的问题,一定还有最有一个没有存入到链表中,所以我们还需要单独的把最后一位加入到链表中来。最后输出前哨节点的下一个也就是dummy->next。时间复杂度为O(n),具体代码如下 :
1 | /** |