返回介绍

solution / 0200-0299 / 0250.Count Univalue Subtrees / README

发布于 2024-06-17 01:04:02 字数 6318 浏览 0 评论 0 收藏 0

250. 统计同值子树

English Version

题目描述

给定一个二叉树,统计该二叉树数值相同的子树个数。

同值子树是指该子树的所有节点都拥有相同的数值。

示例:

输入: root = [5,1,5,5,5,null,5]

        5
       / \
      1   5
       / \   \
      5   5   5

输出: 4

解法

方法一:递归

我们设计一个递归函数 $dfs(root)$,该函数返回以 $root$ 为根的子树中所有节点的值是否相同。

函数 $dfs(root)$ 的递归过程如下:

  • 如果 $root$ 为空,则返回 true
  • 否则,我们递归地计算 $root$ 的左右子树,记为 $l$ 和 $r$;如果 $l$ 为 false 或者 $r$ 为 false,则返回 false;如果 $root$ 的左子树不为空且 $root$ 的左子树的值不等于 $root$ 的值,或者 $root$ 的右子树不为空且 $root$ 的右子树的值不等于 $root$ 的值,则返回 false;否则,我们将答案加一,并返回 true

递归结束后,返回答案即可。

时间复杂度 $O(n)$,空间复杂度 $O(n)$。其中 $n$ 是二叉树的节点个数。

# Definition for a binary tree node.
# class TreeNode:
#   def __init__(self, val=0, left=None, right=None):
#     self.val = val
#     self.left = left
#     self.right = right
class Solution:
  def countUnivalSubtrees(self, root: Optional[TreeNode]) -> int:
    def dfs(root):
      if root is None:
        return True
      l, r = dfs(root.left), dfs(root.right)
      if not l or not r:
        return False
      a = root.val if root.left is None else root.left.val
      b = root.val if root.right is None else root.right.val
      if a == b == root.val:
        nonlocal ans
        ans += 1
        return True
      return False

    ans = 0
    dfs(root)
    return ans
/**
 * Definition for a binary tree node.
 * public class TreeNode {
 *   int val;
 *   TreeNode left;
 *   TreeNode right;
 *   TreeNode() {}
 *   TreeNode(int val) { this.val = val; }
 *   TreeNode(int val, TreeNode left, TreeNode right) {
 *     this.val = val;
 *     this.left = left;
 *     this.right = right;
 *   }
 * }
 */
class Solution {
  private int ans;

  public int countUnivalSubtrees(TreeNode root) {
    dfs(root);
    return ans;
  }

  private boolean dfs(TreeNode root) {
    if (root == null) {
      return true;
    }
    boolean l = dfs(root.left);
    boolean r = dfs(root.right);
    if (!l || !r) {
      return false;
    }
    int a = root.left == null ? root.val : root.left.val;
    int b = root.right == null ? root.val : root.right.val;
    if (a == b && b == root.val) {
      ++ans;
      return true;
    }
    return false;
  }
}
/**
 * Definition for a binary tree node.
 * struct TreeNode {
 *   int val;
 *   TreeNode *left;
 *   TreeNode *right;
 *   TreeNode() : val(0), left(nullptr), right(nullptr) {}
 *   TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
 *   TreeNode(int x, TreeNode *left, TreeNode *right) : val(x), left(left), right(right) {}
 * };
 */
class Solution {
public:
  int countUnivalSubtrees(TreeNode* root) {
    int ans = 0;
    function<bool(TreeNode*)> dfs = [&](TreeNode* root) -> bool {
      if (!root) {
        return true;
      }
      bool l = dfs(root->left);
      bool r = dfs(root->right);
      if (!l || !r) {
        return false;
      }
      int a = root->left ? root->left->val : root->val;
      int b = root->right ? root->right->val : root->val;
      if (a == b && b == root->val) {
        ++ans;
        return true;
      }
      return false;
    };
    dfs(root);
    return ans;
  }
};
/**
 * Definition for a binary tree node.
 * type TreeNode struct {
 *   Val int
 *   Left *TreeNode
 *   Right *TreeNode
 * }
 */
func countUnivalSubtrees(root *TreeNode) (ans int) {
  var dfs func(*TreeNode) bool
  dfs = func(root *TreeNode) bool {
    if root == nil {
      return true
    }
    l, r := dfs(root.Left), dfs(root.Right)
    if !l || !r {
      return false
    }
    if root.Left != nil && root.Left.Val != root.Val {
      return false
    }
    if root.Right != nil && root.Right.Val != root.Val {
      return false
    }
    ans++
    return true
  }
  dfs(root)
  return
}
/**
 * Definition for a binary tree node.
 * class TreeNode {
 *   val: number
 *   left: TreeNode | null
 *   right: TreeNode | null
 *   constructor(val?: number, left?: TreeNode | null, right?: TreeNode | null) {
 *     this.val = (val===undefined ? 0 : val)
 *     this.left = (left===undefined ? null : left)
 *     this.right = (right===undefined ? null : right)
 *   }
 * }
 */

function countUnivalSubtrees(root: TreeNode | null): number {
  let ans: number = 0;
  const dfs = (root: TreeNode | null): boolean => {
    if (root == null) {
      return true;
    }
    const l: boolean = dfs(root.left);
    const r: boolean = dfs(root.right);
    if (!l || !r) {
      return false;
    }
    if (root.left != null && root.left.val != root.val) {
      return false;
    }
    if (root.right != null && root.right.val != root.val) {
      return false;
    }
    ++ans;
    return true;
  };
  dfs(root);
  return ans;
}
/**
 * Definition for a binary tree node.
 * function TreeNode(val, left, right) {
 *   this.val = (val===undefined ? 0 : val)
 *   this.left = (left===undefined ? null : left)
 *   this.right = (right===undefined ? null : right)
 * }
 */
/**
 * @param {TreeNode} root
 * @return {number}
 */
var countUnivalSubtrees = function (root) {
  let ans = 0;
  const dfs = root => {
    if (!root) {
      return true;
    }
    const l = dfs(root.left);
    const r = dfs(root.right);
    if (!l || !r) {
      return false;
    }
    if (root.left && root.left.val !== root.val) {
      return false;
    }
    if (root.right && root.right.val !== root.val) {
      return false;
    }
    ++ans;
    return true;
  };
  dfs(root);
  return ans;
};

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文