算法系列——二叉树7

530. 二叉搜索树最小绝对差

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;

    }

};

501. 二叉搜索树中的众数

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<intfindMode(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;

    }

};

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值