/* struct ListNode { int val; struct ListNode *next; ListNode(int x) : val(x), next(NULL) { } };*/ class Solution { public: ListNode* FindFirstCommonNode( ListNode* pHead1, ListNode* pHead2) { // 利用set保存数据的唯一性判断重复位置,插入失败时即指向第一个重复元素 set<ListNode*>...