/*function ListNode(x){ this.val = x; this.next = null; }*/ function Merge(pHead1, pHead2) { // 链表1,2都不存在 if (pHead1 === null &&&nb...