python3,除了双指针之外的解法。 先计算长度,再决定谁先走多少步。空间复杂度就是O(max(m,n)) class Solution: def FindFirstCommonNode(self, pHead1, pHead2): a, b = 0, 0 def&n...