1367. 二叉树中的列表

1367. 二叉树中的列表
1367. 二叉树中的列表
1367. 二叉树中的列表
1367. 二叉树中的列表
1367. 二叉树中的列表

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

# Definition for a binary tree node.
class TreeNode(object):
    def __init__(self, x):
        self.val = x
        self.left = None
        self.right = None

class Solution(object):
    def isSubPath(self, head, root):
        """
        :type head: ListNode
        :type root: TreeNode
        :rtype: bool
        """
        if not head:
            return True
        if not root:
            return False
        if self.helper(head, root):
            return True
        return self.isSubPath(head, root.left) or self.isSubPath(head, root.right)

    def helper(self, head, root):
        if not head:
            return True
        if not root:
            return False
        if head.val != root.val:
            return False
        return self.helper(head.next, root.left) or self.helper(head.next, root.right)

上一篇:找了十几个xpath helper之后,终于下载好了


下一篇:【渝粤题库】国家开放大学2021春1050金融理论前沿课题题目