LeetCode_26_CountCompleteTreeNodes


1. question: 完全二叉树的节点个数(中等)

给你一棵 完全二叉树 的根节点 root ,求出该树的节点个数。

完全二叉树 的定义如下:在完全二叉树中,除了最底层节点可能没填满外,其余每层节点数都达到最大值,并且最下面一层的节点都集中在该层最左边的若干位置。若最底层为第 h 层,则该层包含 1~ 2h 个节点。

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/count-complete-tree-nodes

示例 1:

示例1

1
2
输入:root = [1,2,3,4,5,6]
输出:6

示例 2:

1
2
输入:root = []
输出:0

示例 3:

1
2
输入:root = [1]
输出:1

提示:

1
2
3
树中节点的数目范围是[0, 5 * 104]
0 <= Node.val <= 5 * 104
题目数据保证输入的树是 完全二叉树

2. answers

这道题比较简单,直接层序遍历一遍即可。

代码如下所示:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
public class Solution_0024 {

public static int countNodes(TreeNode root) {

if(root == null) {
return 0;
}

Queue<TreeNode> queue = new LinkedList<>();

queue.offer(root);
int length, sum = 0;

while(!queue.isEmpty()) {

length = queue.size();
sum += length;

while(length > 0) {
root = queue.poll();

if(root.left != null) {
queue.offer(root.left);
}

if(root.right != null) {
queue.offer(root.right);
}

length --;
}
}

return sum;
}

public static void main(String[] args) {

TreeNode tn1 = new TreeNode(4);
TreeNode tn2 = new TreeNode(5);
TreeNode tn3 = new TreeNode(2, tn1, tn2);
TreeNode tn4 = new TreeNode(6);
TreeNode tn5 = new TreeNode(3, tn4, null);
TreeNode root = new TreeNode(1, tn3, tn5);

System.out.println(countNodes(root));
}
}

3. 备注

参考力扣(LeetCode)官网 - 全球极客挚爱的技术成长平台 (leetcode-cn.com)代码随想录 (programmercarl.com)


文章作者: 浮云
版权声明: 本博客所有文章除特別声明外,均采用 CC BY 4.0 许可协议。转载请注明来源 浮云 !
  目录