struct ListNode *FindFirstCommonNode(struct ListNode* pHead1, struct ListNode* pHead2 ) { //分别为两个链表分配两个指针来存放头节点; struct ListNode *p = pHead1; struct ListNode&...