整体的程序分为两步:两个链表之间的合并,以及对一组链表对折造成两两链表对 Merge(struct ListNode* pHead1, struct ListNode* pHead2 ):将两个链表进行合并 将链表的数组进行对折,首尾进行一对链表的合并,进行迭代 // 合并两个链表 struct ListNode* Merge(struct ListNode* pHead1, struct ListNode* pHead2 ) { // write code here if(!pHead1) return pHead2; if(!pHead2) ...