#include <bits/stdc++.h> using namespace std; struct ListNode { int val; ListNode *next; ListNode(int x) : val(x), next(NULL) {} }; // ListNode *getIntersectionNode(ListNode *headA, ListNode *headB) { // // 在这里补充代码 // for(ListNode*pa=headA;pa!=NULL;pa=pa->next){//双循环暴力遍历 // for(ListNode*pb=...