-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDay13.cpp
62 lines (36 loc) · 846 Bytes
/
Day13.cpp
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
/* Tree Node
struct Node
{
int data;
Node* left;
Node* right;
};*/
class Solution
{
public:
bool trv(Node *root, int &cnt){
if(root == NULL) return true;
if(root->left == NULL and root->right == NULL){
cnt++;
return true;
};
bool blt = trv(root->left, cnt);
bool brt = trv(root->right, cnt);
int r = root->data;
int lt = r, rt = r;
if(root->left) lt = root->left->data;
if(root->right) rt = root->right->data;
if((blt and brt) and ((lt == rt) and (lt == r))){
cnt++;
return true;
}
else return false;
}
int singlevalued(Node *root)
{
//code here
int count = 0;
trv(root, count);
return count;
}
};