我是靠谱客的博主 生动冰棍,最近开发中收集的这篇文章主要介绍求两个链表的交点,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

# Definition for singly-linked list.
class ListNode(object):
    def __init__(self, x):
        self.val = x
        self.next = None

# 将链表反转, 然后进行逆序查找
class Solution(object):
    def getIntersectionNode(self, headA, headB):
        """
        :type head1, head1: ListNode
        :rtype: ListNode
        """
        if headA is None or headB is None:
            return None

        head1 = self.reverseList(headA)
        head2 = self.reverseList(headB)
        # iterator pointer
        it1 = head1
        it2 = head2
        if it1.val != it2.val:
            return None
        it0 = it1
        while it1 and it2:
            if it1.val == it2.val:
                it0 = it1
                it1 = it1.next
                it2 = it2.next
            else:
                return it0
        return it0

    def reverseList(self, head):
        # 边界处理
        if head is None:
            return None
        if head.next is None:
            return head

        #  从第二个节点开始处理
        prev = head
        cur = head.next

        while cur is not None:
            future = cur.next
            cur.next = prev
            prev = cur
            cur = future
        # 第一个节点
        head.next = None
        return prev

最后

以上就是生动冰棍为你收集整理的求两个链表的交点的全部内容,希望文章能够帮你解决求两个链表的交点所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(50)

评论列表共有 0 条评论

立即
投稿
返回
顶部