forked from gouthampradhan/leetcode
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSameTree.java
63 lines (58 loc) · 1.28 KB
/
SameTree.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
52
53
54
55
56
57
58
59
60
61
62
63
package tree;
/**
* Created by gouthamvidyapradhan on 23/01/2018. Given two binary trees, write a function to check
* if they are the same or not.
*
* <p>Two binary trees are considered the same if they are structurally identical and the nodes have
* the same value.
*
* <p>Example 1:
*
* <p>Input: 1 1 / \ / \ 2 3 2 3
*
* <p>[1,2,3], [1,2,3]
*
* <p>Output: true Example 2:
*
* <p>Input: 1 1 / \ 2 2
*
* <p>[1,2], [1,null,2]
*
* <p>Output: false Example 3:
*
* <p>Input: 1 1 / \ / \ 2 1 1 2
*
* <p>[1,2,1], [1,1,2]
*
* <p>Output: false
*
* <p>Solution: Do a pre-order traversal of both the trees in parallel and compare each node
*/
public class SameTree {
public class TreeNode {
int val;
TreeNode left;
TreeNode right;
TreeNode(int x) {
val = x;
}
}
/**
* Main method
*
* @param args
* @throws Exception
*/
public static void main(String[] args) throws Exception {}
public boolean isSameTree(TreeNode p, TreeNode q) {
if ((p == null && q != null) || (p != null && q == null)) return false;
if (p == null && q == null) return true;
else {
boolean status = isSameTree(p.left, q.left);
if (!status || p.val != q.val) {
return false;
}
return isSameTree(p.right, q.right);
}
}
}