-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathSingleValuedSubtree.java
48 lines (47 loc) · 1.03 KB
/
SingleValuedSubtree.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
/*https://practice.geeksforgeeks.org/problems/single-valued-subtree/1*/
class Solution
{
int result;
public int singlevalued(Node root)
{
//code here
result = 0;
recur(root);
return result;
}
public int recur(Node root)
{
if (root == null) return -1;
int left = recur(root.left);
int right = recur(root.right);
if (left == -1 && right == -1)
{
++result;
return root.data;
}
else if (left == -1)
{
if (root.data == right)
{
++result;
return root.data;
}
else return -2;
}
else if (right == -1)
{
if (root.data == left)
{
++result;
return root.data;
}
else return -2;
}
if (left == right && root.data == left)
{
++result;
return root.data;
}
return -2;
}
}