LeetCode #501 Find Mode in Binary Search Tree 二叉搜索樹中的眾數(shù)

501 Find Mode in Binary Search Tree 二叉搜索樹中的眾數(shù)

Description:
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.

Example:

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

題目描述:
給定一個(gè)有相同值的二叉搜索樹(BST),找出 BST 中的所有眾數(shù)(出現(xiàn)頻率最高的元素)蝗拿。

假定 BST 有如下定義:

結(jié)點(diǎn)左子樹中所含結(jié)點(diǎn)的值小于等于當(dāng)前結(jié)點(diǎn)的值
結(jié)點(diǎn)右子樹中所含結(jié)點(diǎn)的值大于等于當(dāng)前結(jié)點(diǎn)的值
左子樹和右子樹都是二叉搜索樹

示例:

例如:
給定 BST [1,null,2,2],

   1
    \
     2
    /
   2

返回[2].

提示:
如果眾數(shù)超過1個(gè)即舌,不需考慮輸出順序

進(jìn)階:
你可以不使用額外的空間嗎结洼?(假設(shè)由遞歸產(chǎn)生的隱式調(diào)用棧的開銷不被計(jì)算在內(nèi))

思路:

二叉搜索樹的中序遍歷可以返回一個(gè)升序的數(shù)組

  1. 中序遍歷時(shí), 對(duì)該數(shù)進(jìn)行數(shù)量判斷, 滿足眾數(shù)條件的就加入(進(jìn)階, 不考慮棧的額外開銷)
    時(shí)間復(fù)雜度O(n), 空間復(fù)雜度O(1)
  2. 中序遍歷的結(jié)果存儲(chǔ)在數(shù)組中, 再判斷眾數(shù)
    時(shí)間復(fù)雜度O(n), 空間復(fù)雜度O(n)

代碼:
C++:

/**
 * 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 
{
private:
    void in_order(TreeNode* root, TreeNode*& pre, int& cur_count, int& max_count, vector<int>& result) 
    {
        if (!root) return;
        in_order(root -> left, pre, cur_count, max_count, result);
        if (pre) cur_count = (root -> val == pre -> val) ? cur_count + 1 : 1;
        if (cur_count == max_count) result.push_back(root -> val);
        else if (cur_count > max_count) 
        {
            result.clear();
            result.push_back(root -> val);
            max_count = cur_count;
        }
        pre = root;
        in_order(root -> right, pre, cur_count, max_count, result);
    }
public:
    vector<int> findMode(TreeNode* root) 
    {
        vector<int> result;
        if (!root) return result;
        TreeNode* pre = NULL;
        int cur_count = 1, max_count = 0;
        in_order(root, pre, cur_count, max_count, result);
        return result;
    }
};

Java:

/**
 * Definition for a binary tree node.
 * public class TreeNode {
 *     int val;
 *     TreeNode left;
 *     TreeNode right;
 *     TreeNode(int x) { val = x; }
 * }
 */
class Solution {
    public int[] findMode(TreeNode root) {
        Map<Integer, Integer> map = new HashMap<>();
        inOrder(root, map);
        int max = 0;
        List<Integer> list = new ArrayList<>();
        for (Integer value : map.values()) if (max < value) max = value;
        for (Integer key : map.keySet()) if (map.get(key) == max) list.add(key);
        int result[] = new int[list.size()];
        for (int i = 0; i < list.size(); i++) result[i] = list.get(i);
        return result;
    }

    private void inOrder(TreeNode root, Map<Integer, Integer> map) {
        if (root == null) return;
        inOrder(root.left, map);
        map.put(root.val, map.getOrDefault(root.val, 0) + 1);
        inOrder(root.right, map);
    }
}

Python:

# Definition for a binary tree node.
# class TreeNode:
#     def __init__(self, x):
#         self.val = x
#         self.left = None
#         self.right = None
from collections import Counter
class Solution:
    def findMode(self, root: TreeNode) -> List[int]:
        result = []
        if not root:
            return result
        self.in_order(root, result)
        dic = Counter(result)
        max = 0
        for k in dic:
            if dic[k] > max:
                max = dic[k]
        result = []
        for k in dic:
            if dic[k] == max:
                result.append(k)
        return result

    def in_order(self, root: TreeNode, result: List[int]):
        if not root:
            return
        self.in_order(root.left, result)
        result.append(root.val)
        self.in_order(root.right, result)
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末撩匕,一起剝皮案震驚了整個(gè)濱河市噪生,隨后出現(xiàn)的幾起案子脱惰,更是在濱河造成了極大的恐慌阳谍,老刑警劉巖抱怔,帶你破解...
    沈念sama閱讀 211,194評(píng)論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件劣坊,死亡現(xiàn)場(chǎng)離奇詭異,居然都是意外死亡野蝇,警方通過查閱死者的電腦和手機(jī)讼稚,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,058評(píng)論 2 385
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來绕沈,“玉大人锐想,你說我怎么就攤上這事≌Ш” “怎么了赠摇?”我有些...
    開封第一講書人閱讀 156,780評(píng)論 0 346
  • 文/不壞的土叔 我叫張陵,是天一觀的道長(zhǎng)浅蚪。 經(jīng)常有香客問我藕帜,道長(zhǎng),這世上最難降的妖魔是什么惜傲? 我笑而不...
    開封第一講書人閱讀 56,388評(píng)論 1 283
  • 正文 為了忘掉前任洽故,我火速辦了婚禮,結(jié)果婚禮上盗誊,老公的妹妹穿的比我還像新娘时甚。我一直安慰自己隘弊,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,430評(píng)論 5 384
  • 文/花漫 我一把揭開白布荒适。 她就那樣靜靜地躺著梨熙,像睡著了一般。 火紅的嫁衣襯著肌膚如雪刀诬。 梳的紋絲不亂的頭發(fā)上咽扇,一...
    開封第一講書人閱讀 49,764評(píng)論 1 290
  • 那天,我揣著相機(jī)與錄音陕壹,去河邊找鬼质欲。 笑死,一個(gè)胖子當(dāng)著我的面吹牛帐要,可吹牛的內(nèi)容都是我干的把敞。 我是一名探鬼主播,決...
    沈念sama閱讀 38,907評(píng)論 3 406
  • 文/蒼蘭香墨 我猛地睜開眼榨惠,長(zhǎng)吁一口氣:“原來是場(chǎng)噩夢(mèng)啊……” “哼奋早!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起赠橙,我...
    開封第一講書人閱讀 37,679評(píng)論 0 266
  • 序言:老撾萬榮一對(duì)情侶失蹤耽装,失蹤者是張志新(化名)和其女友劉穎,沒想到半個(gè)月后期揪,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體掉奄,經(jīng)...
    沈念sama閱讀 44,122評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,459評(píng)論 2 325
  • 正文 我和宋清朗相戀三年凤薛,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了姓建。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,605評(píng)論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡缤苫,死狀恐怖速兔,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情活玲,我是刑警寧澤涣狗,帶...
    沈念sama閱讀 34,270評(píng)論 4 329
  • 正文 年R本政府宣布,位于F島的核電站舒憾,受9級(jí)特大地震影響镀钓,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜镀迂,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,867評(píng)論 3 312
  • 文/蒙蒙 一丁溅、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧探遵,春花似錦窟赏、人聲如沸措译。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,734評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至规哪,卻和暖如春求豫,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背诉稍。 一陣腳步聲響...
    開封第一講書人閱讀 31,961評(píng)論 1 265
  • 我被黑心中介騙來泰國打工蝠嘉, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人杯巨。 一個(gè)月前我還...
    沈念sama閱讀 46,297評(píng)論 2 360
  • 正文 我出身青樓蚤告,卻偏偏與公主長(zhǎng)得像,于是被迫代替她去往敵國和親服爷。 傳聞我的和親對(duì)象是個(gè)殘疾皇子杜恰,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,472評(píng)論 2 348

推薦閱讀更多精彩內(nèi)容