自学内容网 自学内容网

完全二叉树的节点个数-递归

题目描述:

个人题解:

        在对是否有根节点判断完成后,再分别递归调用左右子树,从而来计算二叉树节点。

代码实现:

/**
 * 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 {
    public int countNodes(TreeNode root) {
        return root == null ? 0 : countNodes(root.left) + countNodes(root.right) + 1;
    }
}

复杂度分析:

时间复杂度:O(log 2^n),其中 n 是完全二叉树的节点数。

空间复杂度:O(log 2^n),其中 n 是完全二叉树的节点数。


原文地址:https://blog.csdn.net/qq_45031559/article/details/140541420

免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!