7. Minimum Depth of Binary Tree-LeetCode

难度系数:easy

/**
 * Definition for a binary tree node.
 * 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==NULL)return 0;
        if(root->left!=NULL&&root->right!=NULL)
            return min(minDepth(root->left)+1,minDepth(root->right)+1);
        else if(root->left==NULL&&root->right!=NULL) return minDepth(root->right)+1;
        else if(root->right==NULL&&root->left!=NULL) return minDepth(root->left)+1;
        else return 1;
    }
};
posted @ 2016-04-16 22:58  Free_Open  阅读(88)  评论(0编辑  收藏  举报