366. Find Leaves of Binary Tree

LeetCode Link

題目截圖

depth and height are properties of a node:

The depth of a node is the number of edges from the node to the tree's root node.
A root node will have a depth of 0.

The height of a node is the number of edges on the longest path from the node to a leaf.
A leaf node will have a height of 0.


Properties of a tree:

The height of a tree would be the height of its root node,
or equivalently, the depth of its deepest node.

Note that depth doesn't make sense for a tree.

題解很巧妙的使用了 height. 與 Convert Sorted List to Binary Search Tree 有異曲同工之妙埋同。

Find Leaves of Binary Tree 題解

public List<List<Integer>> findLeaves(TreeNode root) {
    List<List<Integer>> res = new ArrayList<>();
    dfsHeight(root, res);
    
    return res;
}

private int dfsHeight(TreeNode root, List<List<Integer>> res) {
    if (root == null) {
        return -1;
    }
    
    int leftChildDepth = dfsHeight(root.left, res);
    int rightChildDepth = dfsHeight(root.right, res);
    int depth = Math.max(leftChildDepth, rightChildDepth) + 1;
    
    if (res.size() <= depth) {
        ArrayList<Integer> list = new ArrayList<>();
        res.add(list);
    }
    
    res.get(depth).add(root.val);
    
    return depth;
}

Convert Sorted List to Binary Search Tree 題解

class Solution {
    ListNode currentListNode = null;
    
    public TreeNode sortedListToBST(ListNode head) {
        int size = getListLength(head);
        currentListNode = head;
        
        return inorderGenerator(size);
    }
    
    private TreeNode inorderGenerator(int len) {
        if (len == 0) {
            return null;
        }
        int half = len / 2;
        TreeNode leftChild = inorderGenerator(half);
        TreeNode root = new TreeNode(currentListNode.val);
        currentListNode = currentListNode.next;
        TreeNode rightChild = inorderGenerator(len - half -1); //這里的減1喳张,是因?yàn)?root 已經(jīng)占了一個(gè) Node
        root.left = leftChild;
        root.right = rightChild;
        
        return root;
    }
    
    private int getListLength(ListNode head) {
        int size = 0;
        ListNode runner = head;
        while (runner != null) {
            size++;
            runner = runner.next;
        }
        return size;
    }
}
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末丘薛,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌绍移,老刑警劉巖,帶你破解...
    沈念sama閱讀 207,113評(píng)論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場(chǎng)離奇詭異少欺,居然都是意外死亡,警方通過(guò)查閱死者的電腦和手機(jī)馋贤,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,644評(píng)論 2 381
  • 文/潘曉璐 我一進(jìn)店門赞别,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái),“玉大人配乓,你說(shuō)我怎么就攤上這事仿滔』莼伲” “怎么了?”我有些...
    開(kāi)封第一講書人閱讀 153,340評(píng)論 0 344
  • 文/不壞的土叔 我叫張陵崎页,是天一觀的道長(zhǎng)鞠绰。 經(jīng)常有香客問(wèn)我,道長(zhǎng)飒焦,這世上最難降的妖魔是什么蜈膨? 我笑而不...
    開(kāi)封第一講書人閱讀 55,449評(píng)論 1 279
  • 正文 為了忘掉前任,我火速辦了婚禮牺荠,結(jié)果婚禮上翁巍,老公的妹妹穿的比我還像新娘。我一直安慰自己休雌,他們只是感情好灶壶,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,445評(píng)論 5 374
  • 文/花漫 我一把揭開(kāi)白布。 她就那樣靜靜地躺著杈曲,像睡著了一般驰凛。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上鱼蝉,一...
    開(kāi)封第一講書人閱讀 49,166評(píng)論 1 284
  • 那天洒嗤,我揣著相機(jī)與錄音,去河邊找鬼魁亦。 笑死渔隶,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的洁奈。 我是一名探鬼主播间唉,決...
    沈念sama閱讀 38,442評(píng)論 3 401
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼利术!你這毒婦竟也來(lái)了呈野?” 一聲冷哼從身側(cè)響起,我...
    開(kāi)封第一講書人閱讀 37,105評(píng)論 0 261
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤印叁,失蹤者是張志新(化名)和其女友劉穎被冒,沒(méi)想到半個(gè)月后,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體轮蜕,經(jīng)...
    沈念sama閱讀 43,601評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡昨悼,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,066評(píng)論 2 325
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了跃洛。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片率触。...
    茶點(diǎn)故事閱讀 38,161評(píng)論 1 334
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖汇竭,靈堂內(nèi)的尸體忽然破棺而出葱蝗,到底是詐尸還是另有隱情穴张,我是刑警寧澤,帶...
    沈念sama閱讀 33,792評(píng)論 4 323
  • 正文 年R本政府宣布两曼,位于F島的核電站皂甘,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏合愈。R本人自食惡果不足惜叮贩,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,351評(píng)論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望佛析。 院中可真熱鬧,春花似錦彪蓬、人聲如沸寸莫。這莊子的主人今日做“春日...
    開(kāi)封第一講書人閱讀 30,352評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)膘茎。三九已至,卻和暖如春酷誓,著一層夾襖步出監(jiān)牢的瞬間披坏,已是汗流浹背。 一陣腳步聲響...
    開(kāi)封第一講書人閱讀 31,584評(píng)論 1 261
  • 我被黑心中介騙來(lái)泰國(guó)打工盐数, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留棒拂,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 45,618評(píng)論 2 355
  • 正文 我出身青樓玫氢,卻偏偏與公主長(zhǎng)得像帚屉,于是被迫代替她去往敵國(guó)和親。 傳聞我的和親對(duì)象是個(gè)殘疾皇子漾峡,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,916評(píng)論 2 344

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