码迷,mamicode.com
首页 > 其他好文 > 详细

250. Count Univalue Subtrees

时间:2017-11-23 19:40:39      阅读:128      评论:0      收藏:0      [点我收藏+]

标签:class   count   als   code   tree node   treenode   ++   ==   des   

Given a binary tree, count the number of uni-value subtrees.

A Uni-value subtree means all nodes of the subtree have the same value.

For example:
Given binary tree,

              5
             /             1   5
           / \             5   5   5

 

return 4.

/**
 * 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 countUnivalSubtrees(TreeNode* root) {
        count = 0;
        dfs(root);
        return count;
    }
    
private:
    int count;
    int dfs(TreeNode*root)
    {
        if(!root) return INT_MAX;
        int left = dfs(root->left);
        int right = dfs(root->right);
        
        if(left==INT_MAX&&right==INT_MAX){count++;return root->val;}
        else if(left==INT_MAX || right==INT_MAX)
        {
            if(root->val == left || root->val == right){count++;return root->val;}
            else return INT_MIN;
        }
        else
        {
            if(root->val==left&&root->val==right){count++;return root->val;}
            else return INT_MIN;
        }
    }
};

 

250. Count Univalue Subtrees

标签:class   count   als   code   tree node   treenode   ++   ==   des   

原文地址:http://www.cnblogs.com/jxr041100/p/7885662.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!