leetcode:Minimum Depth of Binary Tree(나무의 뿌리 노드에서 잎 노드까지의 최소 거리)[면접 알고리즘 문제]

제목:
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. 제목은 잎 노드의 가장 짧은 거리를 구한다.
차례차례 돌아다니며 반드시 잎 노드에 도착해야 하며 중간의 노드는 계산할 수 없음을 주의하라.
/**
 * Definition for binary tree
 * struct TreeNode {
 *     int val;
 *     TreeNode *left;
 *     TreeNode *right;
 *     TreeNode(int x) : val(x), left(NULL), right(NULL) {}
 * };
 */
class Solution {
public:
    int minDepth(TreeNode *root) {
        if(!root)return 0;
        int a=minDepth(root->right);
        int b=minDepth(root->left);
        if(a*b!=0)return min(a,b)+1;
        else if(b==0)return a+1;
        else if(a==0) return b+1;
    }
};

좋은 웹페이지 즐겨찾기