加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 大数据 > 正文

501.Find Mode in Binary Search Tree

发布时间:2020-12-14 04:15:34 所属栏目:大数据 来源:网络整理
导读:Given a binary search tree (BST) with duplicates,find all the?mode(s)?(the most frequently occurred element) in the given BST.Assume a BST is defined as follows: * The left subtree of a node contains only nodes with keys?less than or equal
Given a binary search tree (BST) with duplicates,find all the?mode(s)?(the most frequently occurred element) in the given BST.
Assume a BST is defined as follows:
* The left subtree of a node contains only nodes with keys?less than or equal to?the node‘s key.
* The right subtree of a node contains only nodes with keys?greater than or equal to?the node‘s key.
* Both the left and right subtrees must also be binary search trees.
?
For example:?Given BST?[1,null,2,2],1
         2
    /
   2
?
return?[2].
Note:?If a tree has more than one mode,you can return them in any order.
Follow up:?Could you do that without using any extra space? (Assume that the implicit stack space incurred due to recursion does not count).



见到BST就想到中序遍历。这个题中的BST是可以包含相同的元素的,题目的要求就是找出相同的元素出现次数最多的是哪几个。那么就可以先进行中序遍历得到有序的排列,如果两个相邻的元素相同,那么这个就是连续的,找出连续最多的即可。题目思路就是BST的中序遍历加上最长连续相同子序列。

题目建议不要用附加空间hash等,方法是计算了两次,一次是统计最大的模式出现的次数,第二次的时候构建出来了数组,然后把出现次数等于最大模式次数的数字放到数组的对应位置。

/**
 * Definition for a binary tree node.
 * public class TreeNode {
 *     int val;
 *     TreeNode left;
 *     TreeNode right;
 *     TreeNode(int x) { val = x; }
 * }
 */
public class Solution {
    public int[] findMode(TreeNode root) {
        inOrder(root);
        modes = new int[modeCount];
        currCount = 0;
        modeCount = 0;
        inOrder(root);
        return modes;
    }

    int currVal = 0;
    int currCount = 0;
    int maxCount = 0;
    int modeCount = 0;

    int[] modes;

    public void handleValue(int val){
        if(currVal != val){
            currVal = val;
            currCount = 0;
        }
        currCount++;
        if(currCount > maxCount){
            maxCount = currCount;
            modeCount = 1;
        }else if (currCount == maxCount){
            if(modes != null){
                modes[modeCount] = currVal;
            }
            modeCount++;
        }
    }

    public void inOrder(TreeNode root){
        if(root == null){
            return;
        }
        inOrder(root.left);
        handleValue(root.val);
        inOrder(root.right);
    }
}
--------------------- 
作者:负雪明烛 
来源:CSDN 
原文:https://blog.csdn.net/fuxuemingzhu/article/details/71124600 
版权声明:本文为博主原创文章,转载请附上博文链接!

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读