-
Notifications
You must be signed in to change notification settings - Fork 5
/
LC_501_FindModeInBST.cpp
92 lines (73 loc) · 1.83 KB
/
LC_501_FindModeInBST.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
/*
https://leetcode.com/problems/find-mode-in-binary-search-tree/
501. Find Mode in Binary Search Tree
*/
/**
* 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:
int mx=-2;
unordered_map<int,int> mp;
void solve(TreeNode* root)
{
if(!root)
return;
mp[root->val]++;
solve(root->left);
solve(root->right);
if(mp[root->val]>=mx)
mx = mp[root->val];
}
vector<int> findMode_1(TreeNode* root) {
if(!root)
return {};
vector<int> ans;
solve(root);
for(auto x: mp)
{
// cout<<x.first<<" "<<x.second<<endl;
if(x.second == mx)
ans.push_back(x.first);
}
return ans;
}
int mxcnt =-1;
int cnt = 0;
int prev = INT_MAX;
vector<int> res;
void inorder(TreeNode* root)
{
if(!root)
return;
inorder(root->left);
if(root->val == prev)
cnt++;
else
cnt=1;
prev = root->val;
if(cnt > mxcnt)
{
res.clear();
res.push_back(root->val);
mxcnt = cnt;
}
else if(cnt == mxcnt)
res.push_back(root->val);
inorder(root->right);
}
vector<int> findMode(TreeNode* root) {
if(!root)
return {};
inorder(root);
return res;
}
};