现在的位置: 首页 > 综合 > 正文

Minimum Depth of Binary Tree

2017年12月23日 ⁄ 综合 ⁄ 共 576字 ⁄ 字号 评论关闭

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) {
        // Start typing your C/C++ solution below
        // DO NOT write int main() function
        
    	if ( !root )
			return 0;
		if ( !root->left && !root->right )
			return 1;
		int ret=INT_MAX;
		if ( root->left )
			ret=minDepth(root->left)+1;
		if ( root->right)
			ret=min(ret,minDepth(root->right)+1);
		return ret;
    }
};
【上篇】
【下篇】

抱歉!评论已关闭.