lintcode - 두 갈래 나무의 최소 깊이 - 155

887 단어
두 갈래 나무를 정해 최소 깊이를 찾아라.
두 갈래 나무의 최소 깊이는 뿌리 노드에서 가장 가까운 잎 노드까지의 거리다.
예제
다음과 같은 두 갈래 나무를 보여 줍니다.
        1
     /   \ 
   2       3
         /   \
        4      5  
이 두 갈래 나무의 최소 깊이는 2이다
/**
 * Definition of TreeNode:
 * class TreeNode {
 * public:
 *     int val;
 *     TreeNode *left, *right;
 *     TreeNode(int val) {
 *         this->val = val;
 *         this->left = this->right = NULL;
 *     }
 * }
 */
class Solution {
public:
    int backtracing(TreeNode *root){
        if(!root)
            return INT_MAX;
        if(!root->left&&!root->right)
            return 1;
        return min(backtracing(root->left),backtracing(root->right))+1; 
    }
    
    int minDepth(TreeNode *root) {
         if(!root)
             return 0;
        return backtracing(root);
    }
};

좋은 웹페이지 즐겨찾기