【Leetcode】160. Intersection of Two Linked Lists

求兩個鏈表的交點 方法1 長度差法 首先求出長的鏈表比短的鏈表長了多少(比如長了m),然後從長鏈表先走m步,然後兩個鏈表一起走,即可相遇 class Solution1(object): def getIntersectionNode(self,headA, headB): """ :type head1, head1: ListNode :rtype: ListNode
相關文章
相關標籤/搜索