LeetCode - Easy - 965

  • Tree

Description


https://leetcode.com/problems/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

Note:

  1. The number of nodes in the given tree will be in the range [1, 100].

  2. Each node’s value will be an integer in the range [0, 99].

Analysis


方法一:递归法

方法二:迭代法

Submission


import java.util.LinkedList;

import com.lun.util.BinaryTree.TreeNode;

public class UnivaluedBinaryTree {

//方法一:递归法

public boolean isUnivalTree(TreeNode root) {

if(root == null) return true;

if(root.left != null && root.left.val != root.val)

return false;

if(root.right != null && root.right.val != root.val)

return false;

return isUnivalTree(root.left) && isUnivalTree(root.right);

}

//方法二:迭代法

public boolean isUnivalTree2(TreeNode root) {

LinkedList stack = new LinkedList<>();

stack.push(root);

while(!stack.isEmpty()) {

TreeNode node = stack.pop();

if(node.left != null) {

if(node.left.val != root.val)

return false;

stack.push(node.left);

}

if(node.right != null) {

if(node.right.val != root.val)

return false;

stack.push(node.right);

}

}

return true;

}

}

  • 14
    点赞
  • 13
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值