/* struct ListNode { int val; struct ListNode *next; ListNode(int x) : val(x), next(NULL) { } };*/ class Solution { public: ListNode* Merge(ListNode* pHead1, ListNode* pHead2) { auto head = new ListNode(0); auto cur=head;//cur指向已排序链表的尾部 while...