leetcode-面试题26-数的子结构
Posted oldby
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode-面试题26-数的子结构相关的知识,希望对你有一定的参考价值。
题目描述:
方法一:O(MN) O(M)
class Solution: def isSubStructure(self, A: TreeNode, B: TreeNode) -> bool: def equal(A,B): if not B:return True if not A or A.val != B.val:return False return equal(A.left,B.left) and equal(A.right,B.right) return bool(A and B) and (equal(A,B) or self.isSubStructure(A.left,B) or self.isSubStructure(A.right,B))
以上是关于leetcode-面试题26-数的子结构的主要内容,如果未能解决你的问题,请参考以下文章
LeetCode每日一题2020.6.26 面试题 02.01. 移除重复节点
数据结构 Java数据结构 栈和队列 以及LeetCode相关面试题
leetcode每日一题(2020-06-26):面试题 02.01. 移除重复节点