代码拉取完成,页面将自动刷新
package com.fishercoder.solutions;
import com.fishercoder.common.classes.TreeNode;
/**
* 572. Subtree of Another Tree
*
Given two non-empty binary trees s and t,
check whether tree t has exactly the same structure and node values with a subtree of s.
A subtree of s is a tree consists of a node in s and all of this node's descendants. The tree s could also be considered as a subtree of itself.
Example 1:
Given tree s:
3
/ \
4 5
/ \
1 2
Given tree t:
4
/ \
1 2
Return true, because t has the same structure and node values with a subtree of s.
Example 2:
Given tree s:
3
/ \
4 5
/ \
1 2
/
0
Given tree t:
4
/ \
1 2
Return false.
*/
public class _572 {
public static class Solution1 {
public boolean isSubtree(TreeNode s, TreeNode t) {
if (s == null && t == null) {
return true;
}
boolean isSubTree = false;
if (s != null && t != null && s.val == t.val) {
isSubTree = isSameTree(s, t);
}
if (isSubTree) {
return true;
}
boolean isSubTreeLeft = false;
if (s.left != null) {
isSubTreeLeft = isSubtree(s.left, t);
}
if (isSubTreeLeft) {
return true;
}
boolean isSubTreeRight = false;
if (s.right != null) {
isSubTreeRight = isSubtree(s.right, t);
}
if (isSubTreeRight) {
return true;
}
return false;
}
private boolean isSameTree(TreeNode p, TreeNode q) {
if (p == null || q == null) {
return p == q;
}
return p.val == q.val && isSameTree(p.left, q.left) && isSameTree(p.right, q.right);
}
}
public static class Solution2 {
public boolean isSubtree(TreeNode s, TreeNode t) {
if (s == null) {
return false;
}
if (same(s, t)) {
return true;
}
return isSubtree(s.left, t) || isSubtree(s.right, t);
}
private boolean same(TreeNode s, TreeNode t) {
if (s == null || t == null) {
return s == t;
}
if (s.val != t.val) {
return false;
}
return same(s.left, t.left) && same(s.right, t.right);
}
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。