码迷,mamicode.com
首页 > 其他好文 > 详细

LeetCode 501. Find Mode in Binary Search Tree(寻找二叉查找树中出现次数最多的值)

时间:2020-04-01 00:48:38      阅读:75      评论:0      收藏:0      [点我收藏+]

标签:出现   search   str   ret   find   efi   二叉查找树   ros   code   

题意:寻找二叉查找树中出现次数最多的值

/**
 * Definition for a binary tree node.
 * struct TreeNode {
 *     int val;
 *     TreeNode *left;
 *     TreeNode *right;
 *     TreeNode(int x) : val(x), left(NULL), right(NULL) {}
 * };
 */
class Solution {
public:
    int ma = 0;
    int cnt = 1;
    TreeNode *pre = NULL;
    vector<int> ans;
    void inorder(TreeNode* root){
        if(root == NULL) return;
        inorder(root -> left);
        if(pre){
            if(pre -> val == root -> val){
                ++cnt;   
            }
            else{
                if(cnt > ma){
                    ma = cnt;
                    ans.clear();
                    ans.push_back(pre -> val);
                }
                else if(cnt == ma){
                    ans.push_back(pre -> val);
                }
                cnt = 1;
            }
        } 
        pre = root;
        inorder(root -> right);
    }
    vector<int> findMode(TreeNode* root) {
        if(root == NULL) return ans;
        inorder(root);
        if(cnt > ma){
            ans.clear();
            ans.push_back(pre -> val);
        }
        else if(cnt == ma){
            ans.push_back(pre -> val);
        }
        return ans;
    }
};

 

LeetCode 501. Find Mode in Binary Search Tree(寻找二叉查找树中出现次数最多的值)

标签:出现   search   str   ret   find   efi   二叉查找树   ros   code   

原文地址:https://www.cnblogs.com/tyty-Somnuspoppy/p/12609761.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!