/** * struct ListNode { * int val; * struct ListNode *next; * }; */ /** * * @param pHead1 ListNode类 * @param pHead2 ListNode类 * @return ListNode类 */ #include <stdlib.h> struct ListNode* Merge(struct ListNode* pHead1, struct ListNode* pHead2 ) { // write code here if( !pHe...