LeetCode 1973. Count Nodes Equal to Sum of Descendants(DFS)

文章目录

    • 1. 题目
    • 2. 解题

1. 题目

Given the root of a binary tree, return the number of nodes where the value of the node is equal to the sum of the values of its descendants.

A descendant of a node x is any node that is on the path from node x to some leaf node.
The sum is considered to be 0 if the node has no descendants.

Example 1:
在这里插入图片描述

Input: root = [10,3,4,2,1]
Output: 2
Explanation:
For the node with value 10: The sum of its descendants is 3+4+2+1 = 10.
For the node with value 3: The sum of its descendants is 2+1 = 3.

Example 2:
在这里插入图片描述

Input: root = [2,3,null,2,null]
Output: 0
Explanation:
No node has a value that is equal to the sum of its descendants.

Example 3:
在这里插入图片描述

Input: root = [0]
Output: 1
For the node with value 0: 
The sum of its descendants is 0 since it has no descendants.Constraints:
The number of nodes in the tree is in the range [1, 10^5].
0 <= Node.val <= 10^5

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/count-nodes-equal-to-sum-of-descendants
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

2. 解题

  • 自底向上,后序遍历
/*** 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 {int ans = 0;
public:int equalToDescendants(TreeNode* root) {dfs(root);return ans;}long long dfs(TreeNode* root){if(!root) return 0;auto l = dfs(root->left);auto r = dfs(root->right);if(root->val == l+r)ans++;return l+r+root->val;}
};

360 ms 195.4 MB C++


我的CSDN博客地址 https://michael.blog.csdn.net/

长按或扫码关注我的公众号(Michael阿明),一起加油、一起学习进步!
Michael阿明

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/471835.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

mybatis在指定库建表_使用MyBatis Plus自动添加数据库表中的创建时间、创建者、更新时间、更新者...

使用到Sringboot、Mybatis Plus、Shiro、Mysql1、创建一张部门表&#xff0c;表结构CREATE TABLE sys_dept (dept_id bigint(20) NOT NULL AUTO_INCREMENT COMMENT 部门id,parent_id bigint(20) DEFAULT 0 COMMENT 父部门id,dept_name varchar(30) DEFAULT COMMENT 部门名称,o…

linux server.xml日志参数,Linux Log4j+Kafka+KafkaLog4jAppender 日志收集

背景&#xff1a;kafka版本&#xff1a;kafka_2.10-0.8.2.1服务器IP&#xff1a;10.243.3.17一&#xff1a;Kafkaserver.properties 文件配置二&#xff1a;zookeeper.properties 文件配置三&#xff1a; zookeeper,kafka启动../bin/zookeeper-server-start.sh -daemon /usr/lo…

LeetCode 1966. Binary Searchable Numbers in an Unsorted Array

文章目录1. 题目2. 解题1. 题目 Consider a function that implements an algorithm similar to Binary Search. The function has two input parameters: sequence is a sequence of integers, and target is an integer value. The purpose of the function is to find if t…

12 哈希表相关类——Live555源码阅读(一)基本组件类

12 哈希表相关类——Live555源码阅读(一)基本组件类 这是Live555源码阅读的第一部分&#xff0c;包括了时间类&#xff0c;延时队列类&#xff0c;处理程序描述类&#xff0c;哈希表类这四个大类。 本文由乌合之众 lym瞎编&#xff0c;欢迎转载 http://www.cnblogs.com/oloroso…

编辑器eslint格式_vscode保存代码,自动按照eslint规范格式化代码设置

vscode保存代码&#xff0c;自动按照eslint规范格式化代码设置编辑器代码风格一致&#xff0c;是前端代码规范的一部分。同一个项目&#xff0c;或者同一个小组&#xff0c;保持代码风格一致很必要。就拿vue项目来说&#xff0c;之前做的几个项目&#xff0c;很多小伙伴代码格式…

linux测试网络带宽极限,iperf 测试极限带宽

iperf 版本建议采用linux&#xff0c;事实上&#xff0c;windows版也很好用。带宽测试通常采用UDP模式&#xff0c;因为能测出极限带宽、时延抖动、丢包率。在进行测试时&#xff0c;首先以链路理论带宽作为数据发送速率进行测试&#xff0c;例如&#xff0c;从客户端到服务器之…

LeetCode MySQL 1571. 仓库经理

1. 题目 表: Warehouse ----------------------- | Column Name | Type | ----------------------- | name | varchar | | product_id | int | | units | int | -----------------------(name, product_id) 是该表主键. 该表的行包含了每个仓库…

将方法作为方法的参数 —— 理解委托

《.NET开发之美》上对于委托写到&#xff1a;“它们就像是一道槛儿&#xff0c;过了这个槛的人&#xff0c;觉得真是太容易了&#xff0c;而没有过去的人每次见到委托和事件就觉得心里别得慌&#xff0c;混身不自在。”我觉得这句话就像是在说我自己一样。于是我决定好好看看关…

c# 定位内存快速增长_改善C#程序,提高程序运行效率的50种方法

转自&#xff1a;http://blog.sina.com.cn/s/blog_6f7a7fb501017p8a.html一、用属性代替可访问的字段1、.NET数据绑定只支持数据绑定&#xff0c;使用属性可以获得数据绑定的好处&#xff1b;2、在属性的get和set访问器重可使用lock添加多线程的支持。二、readonly(运行时常量)…

LeetCode MySQL 1581. 进店却未进行过交易的顾客

1. 题目 表&#xff1a;Visits ---------------------- | Column Name | Type | ---------------------- | visit_id | int | | customer_id | int | ----------------------visit_id 是该表的主键。 该表包含有关光临过购物中心的顾客的信息。 表&#xff1a…

linux中top工具,Linux命令工具 top详解

Linux命令工具 top详解top命令是Linux下常用的性能分析工具&#xff0c;能够实时显示系统中各个进程的资源占用状况&#xff0c;类似于Windows的任务管理器。top是一个动态显示过程,即可以通过用户按键来不断刷新当前状态.如果在前台执行该命令,它将独占前台,直到用户终止该程序…

oracle rds 运维服务_RDS oracle数据库运维方案

{"moduleinfo":{"card_count":[{"count_phone":1,"count":1}],"search_count":[{"count_phone":4,"count":4}]},"card":[{"des":"阿里云数据库专家保驾护航&#xff0c;为用户…

unix架构

UNIX Kernel&#xff08;UNIX内核&#xff09;&#xff1a;指挥机器的运行&#xff0c;控制计算机的资源 UNIX Shell(UNIX外壳&#xff09;&#xff1a;是UNIX内核和用户的接口&#xff0c;是UNXI的命令解释器。目前常用的Shell有3种Bourne Shell(B Shell): 命令sh。最老。Korn…

randn函数加噪声_语义分割中常用的损失函数1(基础篇)

一、L1、L2 loss (分割中不常用&#xff0c;主要用于回归问题)L1 LossL1 Loss 主要用来计算 input x 和 target y 的逐元素间差值的平均绝对值.pytorch表示为&#xff1a;torch.nn.functional.l1_loss(input, target, size_averageTrue)size_average主要是考虑到minibatch的情况…

LeetCode MySQL 1607. 没有卖出的卖家

文章目录1. 题目2. 解题1. 题目 表: Customer ------------------------ | Column Name | Type | ------------------------ | customer_id | int | | customer_name | varchar | ------------------------customer_id 是该表主键. 该表的每行包含网上商城的每一位…

linux串口数据异常,linux串口知识深入--收到数据异常问题处理

对于串口并不陌生&#xff0c;使用了N遍&#xff0c;总以为理解很深刻&#xff0c;实际上还有很多细节未知。近期在处理新的板子发现串口收发很不正常&#xff0c;经常少一些数据、莫名其妙数据被串改了&#xff0c;导致校验通不过&#xff0c;现象很诡异例如存在以下几种现象&…

iOS经典面试题

前言 写这篇文章的目的是因为前两天同学想应聘iOS开发&#xff0c;从网上找了iOS面试题和答案让我帮忙看看。我扫了一眼&#xff0c;倒吸了一口冷气&#xff0c;仔细一看&#xff0c;气的发抖。整篇题目30多个没有一个答案是对的&#xff0c;总结这篇面试题的作者对iOS机制根本…

linux常用命令 打开文件,【Linux】常用命令 lsof查看打开的文件

Linux系统把软硬件都抽象成文件&#xff0c;所以通过文件可以追踪到很多重要信息&#xff0c;如读取的配置文件、打开的端口等。下面是常见的用法&#xff1a;默认测试文件名为text.txt1&#xff0c;显示打开text.txt的进程&#xff1a;lsof text.txt2&#xff0c;显示占用某个…

testflight怎么做版本更新_如何使用TestFlight进行App构建版本测试

在日常的开发当中&#xff0c;当一个项目在开发过程中或者完成准备上线&#xff0c;都需要我们进行真机测试&#xff0c;否则不可能开发完了就直接扔到了App&#xff0c;等上线了再下载看看&#xff0c;这都是不可能的。那么说到真机测试&#xff0c;大家肯定会想到弄一个99美刀…

LeetCode MySQL 1623. 三人国家代表队

文章目录1. 题目2. 解题1. 题目 表: SchoolA ------------------------ | Column Name | Type | ------------------------ | student_id | int | | student_name | varchar | ------------------------student_id 是表的主键 表中的每一行包含了学校A中每一个学…