-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path17.java
More file actions
31 lines (27 loc) · 767 Bytes
/
17.java
File metadata and controls
31 lines (27 loc) · 767 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/**
public class TreeNode {
int val = 0;
TreeNode left = null;
TreeNode right = null;
public TreeNode(int val) {
this.val = val;
}
}
*/
public class Solution {
public boolean HasSubtree(TreeNode root1,TreeNode root2) {
if(root1==null || root2==null) return false;
return equalTree(root1,root2) || HasSubtree(root1.left,root2) || HasSubtree(root1.right,root2);
}
public boolean equalTree(TreeNode root1,TreeNode root2)
{
//注意这两个条件
if(root2==null ) return true;
if(root1==null) return false;
if(root1.val==root2.val)
{
return equalTree(root1.left,root2.left) && equalTree(root1.right,root2.right);
}
return false;
}
}