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. 题目标签:Linked List 题目给了我们两个lists,让我们有序的合并两个 lists. 这题利用递归可以从list 的最后开始向前链接nodes,代码很简洁,清楚. Java Solution: Runti…