zoukankan      html  css  js  c++  java
  • Lc501_二叉搜索树中的众数

    
    package com.example.leetcode;
    
    import java.util.*;
    
    /**
     * @description: 501. 二叉搜索树中的众数
     * 给定一个有相同值的二叉搜索树(BST),找出 BST 中的所有众数(出现频率最高的元素)。
     * <p>
     * 假定 BST 有如下定义:
     * <p>
     * 结点左子树中所含结点的值小于等于当前结点的值
     * 结点右子树中所含结点的值大于等于当前结点的值
     * 左子树和右子树都是二叉搜索树
     * 例如:
     * 给定 BST [1,null,2,2],
     * <p>
     * 1
     * 
     * 2
     * /
     * 2
     * 返回[2].
     * <p>
     * 提示:如果众数超过1个,不需考虑输出顺序
     * <p>
     * 进阶:你可以不使用额外的空间吗?(假设由递归产生的隐式调用栈的开销不被计算在内)
     * @author: licm
     * @create: 2021-04-21 15:40
     **/
    public class Lc501_二叉搜索树中的众数 {
        /**
         * 思路 : 普通的递归遍历 map记录结果集,最后根据结果集进行筛选
         * @param root
         * @return
         */
        public static int[] findMode(TreeNode root) {
            Map<Integer, Integer> map = new HashMap<>();
            travesal(root, map);
    
            List<Integer> temps = new ArrayList<>();
    
            int max = 0;
            for (Map.Entry<Integer, Integer> m : map.entrySet()) {
                max = max>=m.getValue()?max:m.getValue();
            }
    
            for (Map.Entry<Integer, Integer> m : map.entrySet()) {
                String key = m.getKey().toString();
                if (Integer.valueOf(m.getValue().toString()) == max) {
                    temps.add(m.getKey());
                }
            }
    
            int[] res = new int[temps.size()];
            for (int i = 0; i < temps.size(); i++) {
                res[i] = temps.get(i);
            }
            return res;
        }
    
        static void travesal(TreeNode root, Map<Integer, Integer> res) {
            if (root == null) {
                return;
            }
            if (res.containsKey(root.val)) {
                res.put(root.val, res.get(root.val) + 1);
            } else {
                res.put(root.val, 1);
            }
            travesal(root.left, res);
            travesal(root.right, res);
        }
    
        public static void main(String[] args) {
            Integer[] arr = new Integer[]{0,1};
            TreeNode root = CreateNode.createTree(arr).get(0);
            int[] res = findMode(root);
            for (int i = 0; i < res.length; i++) {
                System.out.println(res[i]);
            }
        }
    }
    
    
    不会,我可以学;落后,我可以追赶;跌倒,我可以站起来!
  • 相关阅读:
    Win7+CentOS7双系统安装
    python中的 __getattr__ __setattr__ __getitem__ __add__
    对象.函数名 叫方法 和 类.函数名 叫函数
    python中的__str__ __name__ 和__call__方法
    flask中的登录验证 装饰器版 befor_request版
    装饰器
    Django model中的 class Meta 详解
    跨域问题cors
    reids缓存
    python-django目录
  • 原文地址:https://www.cnblogs.com/xiaoshahai/p/14688783.html
Copyright © 2011-2022 走看看