Minimum Depth of Binary Tree

2016-09-19  本文已影响0人  一枚煎餅
Minimum Depth of Binary Tree.png

解題思路 :

題目定義如果一邊沒有 child 則不能算為一條 path 所以除了找 min(left, right) 以外另外要再定義兩個條件 如果左邊有 child 右邊沒有 就只檢查左邊的最小高度 反之則檢查右邊的最小高度

C++ code :

<pre><code>
/**

public:

/**
 * @param root: The root of binary tree.
 * @return: An integer
 */

int minDepth(TreeNode *root) {
    // write your code here
    if(!root) return 0;
    if(root->left == nullptr && root->right == nullptr) return 1;
    if(root->left && !root->right) return 1 + minDepth(root->left);
    if(root->right && !root->left) return 1 + minDepth(root->right);
    return 1 + min(minDepth(root->left), minDepth(root->right));
}

};

上一篇 下一篇

猜你喜欢

热点阅读