9.22 练手 腾讯50题 160 寻找两链表交点

Leetcode 160. Intersection of Two Linked Lists

Write a program to find the node at which the intersection of two singly linked lists begins.

For example, the following two linked lists:

begin to intersect at node c1.

 

思路是找到长链表从哪个位置与短链表可以同步,因为后面的长度都是一样的,假设它们一样长的话总是会相遇的,所以只要找到哪个最长,同时从相同的地方往后走就好,代码如下:

class Solution(object):
    def getIntersectionNode(self, headA, headB):
        """
        :type head1, head1: ListNode
        :rtype: ListNode
        """
        if(headA==None or headB==None ):
            return None
        lenA = self.countLength(headA)
        lenB = self.countLength(headB)
        gap = 0
        if(lenA > lenB):
            large, small = headA, headB
            gap = lenA - lenB
        else:
            large, small = headB, headA
            gap = lenB - lenA
        while(gap > 0):
            large = large.next
            gap -= 1
        while(large!=None and small!= None):
            if(large == small):
                return small
            else:
                large = large.next
                small = small.next
                
    def countLength(self, head):
        count = 0
        while head != None:
            head = head.next
            count += 1
        return count

这个算法最坏的情况时间复杂度是O(a+b+b)  b>a,a,b为两个链表长短,但其实还是O(n)的。

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值