题解 | #统计农场牛数量#
统计农场牛数量
https://www.nowcoder.com/practice/c18924a6debf437180d77baec91dc586
题目考察的知识点:二叉树的遍历
题目解答方法的文字分析:遍历这棵树,然后加上结点的个数
本题解析所用的编程语言:c++
/**
* struct TreeNode {
* int val;
* struct TreeNode *left;
* struct TreeNode *right;
* TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
* };
*/
class Solution {
public:
/**
* 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
*
*
* @param root TreeNode类
* @return int整型
*/
int countNodes(TreeNode* root) {
// write code here
if(!root)
return 0;
int l=countNodes(root->left);
int r=countNodes(root->right);
return l+r+1;
}
};