/* struct ListNode { int val; struct ListNode *next; ListNode(int x) : val(x), next(NULL) { } };*/ #include <cmath> #include <linux/limits.h> class Solution { public: ListNode* Merge(ListNode* pHead1, ListNode* pHead2) { //典型的二路归并排序 //给他一个头结点,这个结点不保存值 ListNode* h...