zoukankan      html  css  js  c++  java
  • 501. Find Mode in Binary Search Tree

    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).

    private readonly Dictionary<int, int> dictionary = new Dictionary<int, int>();
    
            public int[] FindMode(TreeNode root)
            {
                Chuck(root);
                if (dictionary.Count > 0)
                {
                    int max = dictionary.Max(x => x.Value);
                    var array = dictionary.Where(x => x.Value == max).Select(x => x.Key).ToArray();
                    return array;
                }
                else
                {
                    return new int[0];
                }
            }
    
            private void Chuck(TreeNode node)
            {
                if (node == null)
                {
                    return;
                }
    
                int val = node.val;
                if (dictionary.ContainsKey(val))
                {
                    dictionary[val]++;
                }
                else
                {
                    dictionary[val] = 1;
                }
                Chuck(node.left);
                Chuck(node.right);
            }
    Runtime: 272 ms, faster than 32.05% of C# online submissions for Find Mode in Binary Search Tree.
    Memory Usage: 33.1 MB, less than 11.30% of C# online submissions forFind Mode in Binary Search Tree.
  • 相关阅读:
    004-DQN
    003-sarsa
    002-Q Leaning
    001-强化学习简介
    阿里云GPU服务器配置深度学习环境-远程访问-centos,cuda,cudnn,tensorflow,keras,jupyter notebook
    003-keras模型的保存于加载
    004-linux常用命令-网络命令
    004-linux常用命令-压缩解压命令
    004-linux常用命令-添加管理员用户
    004-linux常用命令-用户管理命令
  • 原文地址:https://www.cnblogs.com/chucklu/p/10959760.html
Copyright © 2011-2022 走看看