forked from Nandinig24/Leetcode-Solutions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1457
52 lines (44 loc) · 1.27 KB
/
1457
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
/**
* Definition for a binary tree node.
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode() : val(0), left(nullptr), right(nullptr) {}
* TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
* TreeNode(int x, TreeNode *left, TreeNode *right) : val(x), left(left), right(right) {}
* };
*/
class Solution {
public:
void findPaths(TreeNode* root, unordered_map<int, int>& pathCounts, int& res) {
if (root == nullptr) {
return;
}
pathCounts[root->val]++;
if (root->left == nullptr && root->right == nullptr) { //leaf mil gayi
int oddCount = 0;
for (const auto& entry : pathCounts) {
if (entry.second % 2 == 1) {
oddCount++;
}
}
if (oddCount <= 1) {
res++;
}
}
findPaths(root->left, pathCounts, res);
findPaths(root->right, pathCounts, res);
pathCounts[root->val]--;
if (pathCounts[root->val] == 0) {
pathCounts.erase(root->val);
}
}
int pseudoPalindromicPaths(TreeNode* root) {
int res = 0;
vector<vector<int>> paths;
unordered_map<int, int>pathCounts;
findPaths(root,pathCounts,res);
return res;
}
};