-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNo222CountCompleteTreeNodes.java
54 lines (47 loc) · 1.26 KB
/
No222CountCompleteTreeNodes.java
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
49
50
51
52
53
54
package com.wzx.leetcode;
import com.wzx.entity.TreeNode;
/**
* @see <a href="https://leetcode.com/problems/count-complete-tree-nodes/">https://leetcode.com/problems/count-complete-tree-nodes/</a>
* @author wzx
*/
public class No222CountCompleteTreeNodes {
/**
* 深搜,暴力解法
* <p>
* time: O(n)
* space: O(h)
*/
public int countNodes1(TreeNode root) {
if (root == null) return 0;
return countNodes1(root.left) + countNodes1(root.right) + 1;
}
/**
* 一棵完全二叉树的两棵子树,至少有一棵是满二叉树
* <p>
* time: O(logn*logn)
* space: O(n)
*/
public int countNodes2(TreeNode root) {
if (root == null) return 0;
// 最左边路径的长度
int leftHeight = 0;
TreeNode leftTree = root;
while (leftTree != null) {
leftHeight++;
leftTree = leftTree.left;
}
// 最右边路径的长度
int rightHeight = 0;
TreeNode rightTree = root;
while (rightTree != null) {
rightHeight++;
rightTree = rightTree.right;
}
if (rightHeight == leftHeight) {
// 满二叉树
return (int) Math.pow(2, leftHeight) - 1;
}
// 不为满二叉树, 按普通二叉树计算
return countNodes2(root.left) + countNodes2(root.right) + 1;
}
}