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. 问题:将两个已排序的列表,合并为一个有序列表. 令 head 为两个列表表头中较小的一个,令 p 为新的已排序的最后一个元素.令 l1, l2 分别为两个列表中未排序部分的首节点.依次将 l1, l2 中的较小值追加…