class Solution {
public:/*
找最小差值,因为是二叉平衡树,利用左小右大的性质,中序遍历,最小差值一定在相邻的两个节点之间
递归函数返回值应该是void 因为要遍历整颗树,找到最小值
*/
TreeNode* pre;
int res=INT_MAX;
void help(TreeNode* root){
if(!root) return;
help(root->left);
if(pre){
res=min(res,root->val-pre->val);
}
pre=root;
help(root->right);
}
int getMinimumDifference(TreeNode* root) {
help(root);
return res;
}
};
class Solution {
public:
/*
寻找二叉树里的众数
首先遍历整棵树全部存入哈希表中,就可以记录出现的次数
但是对哈希表的value想要进行排序的只能写一个结构体比较器,然后sort排序,从大到小排
*/
//这里参数传的引用类型,不然外面的实参是不会被修改的
void help(TreeNode* root,unordered_map<int,int>&mp){
if(!root) return;
mp[root->val]++;
help(root->left,mp);
help(root->right,mp);
}
struct cmp{
bool operator()(const pair<int,int>&a,const pair<int,int>&b){
return a.second>b.second;
}
};
vector<int> findMode(TreeNode* root) {
if(!root) return {};
vector<int>res;
unordered_map<int,int>mp;
help(root,mp);
vector<pair<int,int>>vec(mp.begin(),mp.end());//哈希的元素存入数组里
sort(vec.begin(),vec.end(),cmp());//由高到底低序
res.push_back(vec[0].first);//第一个肯定是众数,但是众数可能不止一个,所以要遍历一下存入哈希元素的数组
for(int i=1;i<vec.size();i++){
if(vec[i].second==vec[0].second){
res.push_back(vec[i].first);
}
else{
break;
}
}
return res;
}
};