【LeetCode】21、合并两个有序链表

21、Merge Two Sorted Lists合并两个有序链表

难度:简单

题目描述

  • 英文:

    Merge two sorted linked lists and return it as a new list. The new list should be made by splicing together the nodes of the first two lists.

  • 中文:

    将两个有序链表合并为一个新的有序链表并返回。新链表是通过拼接给定的两个链表的所有节点组成的。

  • 示例

    Example:

    1
    2
    Input: 1->2->4, 1->3->4
    Output: 1->1->2->3->4->4

解题思路

思路一

递归思路,比较头结点,保留较小值,再合并后续内容。

代码提交

C++,用时8ms,内存9M

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
/**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode(int x) : val(x), next(NULL) {}
* };
*/
class Solution {
public:
ListNode* mergeTwoLists(ListNode* l1, ListNode* l2) {
if (l1==NULL)
return l2;
if (l2==NULL)
return l1;
if (l1->val<l2->val) {
l1->next = mergeTwoLists(l1->next, l2);
return l1;
}
else {
l2->next = mergeTwoLists(l1, l2->next);
return l2;
}
}
};

进行Recursion探索时完成的,其他解法后续补充。

-------------本文结束感谢您的阅读-------------
0%