/* struct ListNode { int val; struct ListNode *next; ListNode(int x) : val(x), next(NULL) { } };*/ class Solution { public: ListNode* Merge(ListNode* pHead1, ListNode* pHead2) { ListNode * l1=pHead1; ListNode * l2=pHead2; ListNode h=(ListNode(-1)); ListNode * head=&h; ListNode * cur =head; //2 ptr,g...