forked from geekxh/hello-algorithm
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Solution.java
51 lines (38 loc) · 1008 Bytes
/
Solution.java
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/**
public class TreeNode {
int val = 0;
TreeNode left = null;
TreeNode right = null;
public TreeNode(int val) {
this.val = val;
}
}
*/
/**
* @author mcrwayfun
* @version v1.0
* @date Created in 2019/01/01
* @description
*/
public class Solution {
public boolean HasSubtree(TreeNode root1, TreeNode root2) {
if (root1 == null || root2 == null) {
return false;
}
return isSame(root1, root2) ||
HasSubtree(root1.left, root2) || HasSubtree(root1.right, root2);
}
private boolean isSame(TreeNode root1, TreeNode root2) {
if (root2 == null) {
return true;
}
// 在root2,root1遍历完成后,仍未找到符合的结构,返回false
if (root1 == null) {
return false;
}
if (root1.val != root2.val) {
return false;
}
return isSame(root1.left, root2.left) && isSame(root1.right, root2.right);
}
}