赞
踩
题目描述:
个人题解:
在对是否有根节点判断完成后,再分别递归调用左右子树,从而来计算二叉树节点。
代码实现:
- /**
- * 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 是完全二叉树的节点数。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。