LeetCode解题--合并两个有序链表

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

/**
 * Definition for singly-linked list.
 * public class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode(int x) { val = x; }
 * }
 */
 //采用递归的方法解答---即自己调用自己的方法
class Solution {
    public ListNode mergeTwoLists(ListNode l1, ListNode l2) {
     if (l1 == null) {
            return l2;
        }
        else if (l2 == null) {
            return l1;
        }
        else if (l1.val < l2.val) {
        //让链表头部较小的那个链表头部与另一个链表相连接
            l1.next = mergeTwoLists(l1.next, l2);
            return l1;
        }
        else {
            l2.next = mergeTwoLists(l1, l2.next);
            return l2;
        }
    }
}

发布了29 篇原创文章 · 获赞 1 · 访问量 1244

猜你喜欢

转载自blog.csdn.net/weixin_42082088/article/details/104073012