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

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

class Solution {
   
public:
int countNodes(TreeNode* root) {
   
        if(root==NULL

你可能感兴趣的:(力扣题目,二叉树,leetcode,算法)