力扣 leetcode 每日一题 222. 完全二叉树的节点个数

力扣 leetcode 每日一题 222. 完全二叉树的节点个数
别问,问就是dfs

class Solution {
public:
int countNodes(TreeNode* root) {
        if(root==NULL){
            return 0;
        }
        int left=countNodes(root->left);
        int right=countNodes(root->right);
        return left+right+1;
    }
};
上一篇:洛谷 P3239 [HNOI2015]亚瑟王(期望+dp)


下一篇:刷题踩坑优解