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

LeetCode 965. Univalued Binary Tree

时间:2019-05-19 14:13:18      阅读:97      评论:0      收藏:0      [点我收藏+]

标签:class   https   http   tco   bst   ever   NPU   style   amp   

965. Univalued Binary Tree

A binary tree is univalued if every node in the tree has the same value.

Return true if and only if the given tree is univalued.

Example 1:

技术图片
Input: [1,1,1,1,1,null,1]
Output: true

Example 2:

技术图片
Input: [2,2,2,5,2]
Output: false
/**
 * 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:
    bool isUnivalTree(TreeNode* root) {
        if (root == nullptr)
            return true;
        if (root->left && root->left->val != root->val) return false;
        if (root->right && root->right->val != root->val) return false;
        
        return isUnivalTree(root->left) && isUnivalTree(root->right);
    }
};

 

 

 

 

 

LeetCode 965. Univalued Binary Tree

标签:class   https   http   tco   bst   ever   NPU   style   amp   

原文地址:https://www.cnblogs.com/douzujun/p/10889010.html

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