剑指offer--26树的子结构
Posted Anrys
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了剑指offer--26树的子结构相关的知识,希望对你有一定的参考价值。
题目
代码
class Solution {
public boolean isSubStructure(TreeNode A, TreeNode B) {
if (B == null || A == null) return false;
if (A.val == B.val && (helper(A.left, B.left) && helper(A.right, B.right))) return true;
return isSubStructure(A.left, B) || isSubStructure(A.right, B);
}
private boolean helper(TreeNode root1, TreeNode root2) {
if (root2 == null) return true;
if (root1 == null) return false;
if (root1.val == root2.val) {
return helper(root1.left, root2.left) && helper(root1.right, root2.right);
} else {
return false;
}
}
}
结果
以上是关于剑指offer--26树的子结构的主要内容,如果未能解决你的问题,请参考以下文章
剑指 Offer 26. 树的子结构 / 剑指 Offer 27. 二叉树的镜像 / 剑指 Offer 28. 对称的二叉树 / 剑指 Offer 29. 顺时针打印矩阵