Leetcode - Minimum Depth of Binary Tree

Question:

Given a binary tree, find its minimum depth.

The minimum depth is the number of nodes along the shortest path from the root node down to the nearest leaf node.

My code:

/**
 * 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 minDepth(TreeNode root) {
        if (root == null)
            return 0;
        
        return minDepth(root, 0);
    }
    
    private int minDepth(TreeNode root, int depth) {
        if (root.left == null && root.right == null)
            return 1 + depth;
        else if (root.left != null && root.right == null)
            return minDepth(root.left, depth + 1);
        else if (root.left == null && root.right != null)
            return minDepth(root.right, depth + 1);
        else {
            return Math.min(minDepth(root.left, depth + 1), minDepth(root.right, depth + 1));
        }
            
    }
}

Test result:

Paste_Image.png

總結:
這道題目太簡單了。。。
如果一定要找出什么總結的地方的話。我覺得就是如何使用遞歸吧崎弃。這里其實用到了一個函數(shù)重載 override 的概念。
題目給的方法是
public int minDepth(TreeNode root)

我自己重載了這個方法
private int minDepth(TreeNode root, int depth)

所以我在公共方法上的代碼可以更加簡單曾沈,而將遞歸過程寫在了我的私有方法上迷扇。
希望女朋友四戰(zhàn)托福可以上90存和!而我的目標是95锡溯!加油!
好久沒刷題了哑姚,希望接下來可以堅持至少每天一道題目。


Anyway, Good luck, Richardo!

My code:

/**
 * 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 minDepth(TreeNode root) {
        return helper(root);
    }
    
    private int helper(TreeNode root) {
        if (root == null)
            return 0;
        int left = helper(root.left);
        int right = helper(root.right);
        if (left == 0)
            return right + 1;
        else if (right == 0)
            return left + 1;
        else
            return 1 + Math.min(left, right);
    }
}

這道題木沒有一遍過芜茵。想簡單的改一下max depth of tree 叙量,取最小值,但是不行九串。
因為如果一個結點的右結點是null的绞佩,那么他就不能算是有深度,不能直接返回0.
而要直接返回左側的深度猪钮。

Anyway, Good luck, Richardo!

My code:

/**
 * 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 minDepth(TreeNode root) {
        if (root == null) {
            return 0;
        }
        int left = minDepth(root.left);
        int right = minDepth(root.right);
        if (left == 0 && right == 0) {
            return 1;
        }
        else if (left == 0 || right == 0) {
            return Math.max(left, right) + 1;
        }
        else {
            return Math.min(left, right) + 1;
        }
    }
}

題目沒能一遍過品山,還是想簡單了。
在結點上不是去min + 1的烤低。如果左孩子是空肘交,那么返回來的0是不能考慮進去的。

然后寫了下BFS版本:

My code:

/**
 * 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 minDepth(TreeNode root) {
        if (root == null) {
            return 0;
        }
        
        Queue<TreeNode> q = new LinkedList<TreeNode>();
        q.offer(root);
        int counter = 0;
        while (!q.isEmpty()) {
            int size = q.size();
            counter++;
            for (int i = 0; i < size; i++) {
                TreeNode curr = q.poll();
                if (curr.left == null && curr.right == null) {
                    return counter;
                }
                if (curr.left != null) {
                    q.offer(curr.left);
                }
                if (curr.right != null) {
                    q.offer(curr.right);
                }
            }
        }
        
        return counter;
    }
}

Anyway, Good luck, Richardo! -- 09/06/2016

最后編輯于
?著作權歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末扑馁,一起剝皮案震驚了整個濱河市涯呻,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌腻要,老刑警劉巖复罐,帶你破解...
    沈念sama閱讀 211,561評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異雄家,居然都是意外死亡效诅,警方通過查閱死者的電腦和手機,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,218評論 3 385
  • 文/潘曉璐 我一進店門趟济,熙熙樓的掌柜王于貴愁眉苦臉地迎上來乱投,“玉大人,你說我怎么就攤上這事咙好〈垭纾” “怎么了?”我有些...
    開封第一講書人閱讀 157,162評論 0 348
  • 文/不壞的土叔 我叫張陵勾效,是天一觀的道長嘹悼。 經(jīng)常有香客問我叛甫,道長,這世上最難降的妖魔是什么杨伙? 我笑而不...
    開封第一講書人閱讀 56,470評論 1 283
  • 正文 為了忘掉前任其监,我火速辦了婚禮,結果婚禮上限匣,老公的妹妹穿的比我還像新娘抖苦。我一直安慰自己,他們只是感情好米死,可當我...
    茶點故事閱讀 65,550評論 6 385
  • 文/花漫 我一把揭開白布锌历。 她就那樣靜靜地躺著,像睡著了一般峦筒。 火紅的嫁衣襯著肌膚如雪究西。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,806評論 1 290
  • 那天物喷,我揣著相機與錄音卤材,去河邊找鬼。 笑死峦失,一個胖子當著我的面吹牛扇丛,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播尉辑,決...
    沈念sama閱讀 38,951評論 3 407
  • 文/蒼蘭香墨 我猛地睜開眼帆精,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了材蹬?” 一聲冷哼從身側響起实幕,我...
    開封第一講書人閱讀 37,712評論 0 266
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎堤器,沒想到半個月后昆庇,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,166評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡闸溃,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,510評論 2 327
  • 正文 我和宋清朗相戀三年整吆,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片辉川。...
    茶點故事閱讀 38,643評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡表蝙,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出乓旗,到底是詐尸還是另有隱情府蛇,我是刑警寧澤,帶...
    沈念sama閱讀 34,306評論 4 330
  • 正文 年R本政府宣布屿愚,位于F島的核電站汇跨,受9級特大地震影響务荆,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜穷遂,卻給世界環(huán)境...
    茶點故事閱讀 39,930評論 3 313
  • 文/蒙蒙 一函匕、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧蚪黑,春花似錦盅惜、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,745評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至掠剑,卻和暖如春蓬推,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背澡腾。 一陣腳步聲響...
    開封第一講書人閱讀 31,983評論 1 266
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留糕珊,地道東北人动分。 一個月前我還...
    沈念sama閱讀 46,351評論 2 360
  • 正文 我出身青樓,卻偏偏與公主長得像红选,于是被迫代替她去往敵國和親澜公。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當晚...
    茶點故事閱讀 43,509評論 2 348

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