199. Binary Tree Right Side View

Given a binary tree, imagine yourself standing on the right side of it, return the values of the nodes you can see ordered from top to bottom.

For example:
Given the following binary tree,

   1            <---
 /   \
2     3         <---
 \     \
  5     4       <---

You should return [1, 3, 4].

一刷
題解:用遞歸來求解滓侍,里面最巧妙的是惊奇,遞歸子問題內(nèi)傳入了level, 如果level與我們當(dāng)前的array的size想同喉刘,那么它就不是rightmost

/**
 * Definition for a binary tree node.
 * public class TreeNode {
 *     int val;
 *     TreeNode left;
 *     TreeNode right;
 *     TreeNode(int x) { val = x; }
 * }
 */
public class Solution {
    public List<Integer> rightSideView(TreeNode root) {
        List<Integer> res = new ArrayList<>();
        rightView(root, 0, res);
        return res;
    }
    
    private void rightView(TreeNode root, int level, List<Integer> res){
        if(root==null) return;
        if(level == res.size()) res.add(root.val);
        rightView(root.right, level+1, res);
        rightView(root.left, level+1, res);
    }
}

二刷
其實(shí)就是DFS庐氮,但是要加上一個(gè)level的信息语稠,來決定是否加入結(jié)果中。

/**
 * Definition for a binary tree node.
 * public class TreeNode {
 *     int val;
 *     TreeNode left;
 *     TreeNode right;
 *     TreeNode(int x) { val = x; }
 * }
 */
public class Solution {
    public List<Integer> rightSideView(TreeNode root) {
        List<Integer> res = new ArrayList<>();
        if(root == null) return res;
        rightView(root, 1, res);
        return res;
        
    }
    
    private void rightView(TreeNode root, int level, List<Integer> res){
        if(root == null) return;
        if(level>res.size()) res.add(root.val);
        rightView(root.right, level+1, res);
        rightView(root.left, level+1, res);
    }
}

三刷
DFS + level信息

/**
 * Definition for a binary tree node.
 * public class TreeNode {
 *     int val;
 *     TreeNode left;
 *     TreeNode right;
 *     TreeNode(int x) { val = x; }
 * }
 */
public class Solution {
    public List<Integer> rightSideView(TreeNode root) {
        List<Integer> res = new ArrayList<>();
        rightSideView(root, 1, res);
        return res;
    }
    
    private void rightSideView(TreeNode root, int level, List<Integer> res){
        if(root == null) return;
        if(level>res.size()){
            res.add(root.val);
        }
        rightSideView(root.right, level+1, res);
        rightSideView(root.left, level+1, res);
    }
}
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末旭愧,一起剝皮案震驚了整個(gè)濱河市颅筋,隨后出現(xiàn)的幾起案子宙暇,更是在濱河造成了極大的恐慌,老刑警劉巖议泵,帶你破解...
    沈念sama閱讀 212,816評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件占贫,死亡現(xiàn)場離奇詭異,居然都是意外死亡先口,警方通過查閱死者的電腦和手機(jī)型奥,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,729評論 3 385
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來碉京,“玉大人厢汹,你說我怎么就攤上這事⌒持妫” “怎么了烫葬?”我有些...
    開封第一講書人閱讀 158,300評論 0 348
  • 文/不壞的土叔 我叫張陵,是天一觀的道長凡蜻。 經(jīng)常有香客問我搭综,道長,這世上最難降的妖魔是什么划栓? 我笑而不...
    開封第一講書人閱讀 56,780評論 1 285
  • 正文 為了忘掉前任兑巾,我火速辦了婚禮,結(jié)果婚禮上忠荞,老公的妹妹穿的比我還像新娘蒋歌。我一直安慰自己,他們只是感情好委煤,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,890評論 6 385
  • 文/花漫 我一把揭開白布堂油。 她就那樣靜靜地躺著,像睡著了一般素标。 火紅的嫁衣襯著肌膚如雪称诗。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 50,084評論 1 291
  • 那天头遭,我揣著相機(jī)與錄音寓免,去河邊找鬼。 笑死计维,一個(gè)胖子當(dāng)著我的面吹牛袜香,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播鲫惶,決...
    沈念sama閱讀 39,151評論 3 410
  • 文/蒼蘭香墨 我猛地睜開眼蜈首,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起欢策,我...
    開封第一講書人閱讀 37,912評論 0 268
  • 序言:老撾萬榮一對情侶失蹤吆寨,失蹤者是張志新(化名)和其女友劉穎,沒想到半個(gè)月后踩寇,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體啄清,經(jīng)...
    沈念sama閱讀 44,355評論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,666評論 2 327
  • 正文 我和宋清朗相戀三年俺孙,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了辣卒。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,809評論 1 341
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡睛榄,死狀恐怖荣茫,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情场靴,我是刑警寧澤啡莉,帶...
    沈念sama閱讀 34,504評論 4 334
  • 正文 年R本政府宣布,位于F島的核電站憎乙,受9級特大地震影響票罐,放射性物質(zhì)發(fā)生泄漏叉趣。R本人自食惡果不足惜泞边,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 40,150評論 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望疗杉。 院中可真熱鬧阵谚,春花似錦、人聲如沸烟具。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,882評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽朝聋。三九已至嗡午,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間冀痕,已是汗流浹背荔睹。 一陣腳步聲響...
    開封第一講書人閱讀 32,121評論 1 267
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留言蛇,地道東北人僻他。 一個(gè)月前我還...
    沈念sama閱讀 46,628評論 2 362
  • 正文 我出身青樓,卻偏偏與公主長得像腊尚,于是被迫代替她去往敵國和親吨拗。 傳聞我的和親對象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,724評論 2 351

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