解题思路 使用递归实现: 定义函数功能:合并两个有序链表,并返回链表的头 结束条件:两个链表其中一个为空,返回另一个链表 递推公式: l1.val < l2.val:l1.next = MergeTwoLists(l1.next, l2) l1.val >= l2.val:l2.next = MergeTwoLists(l1, l2.next) 代码 /** * Definition for singly-linked list. * public class ListNode { * pub…