965. Univalued Binary Tree 整个一样的二叉树

2021/7/19 6:05:27

本文主要是介绍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

 

反正就是尽量用traverse。少用bst的模板(哪怕是bst),因为没人用

 

class Solution {
    int val = -1;
    public boolean isUnivalTree(TreeNode root) {
        if (root == null) return true;
        if (val < 0) val = root.val;
        return root.val == val && isUnivalTree(root.left)  && isUnivalTree(root.right);
    }
}

 

 



这篇关于965. Univalued Binary Tree 整个一样的二叉树的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程