This repository has been archived by the owner on Jun 24, 2021. It is now read-only.
forked from hoanhan101/algo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
balanced_binary_tree_test.go
98 lines (79 loc) · 2.58 KB
/
balanced_binary_tree_test.go
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
/*
Problem:
- Given a binary tree, determine if it is height-balanced.
Approach:
- Calculate max depth for the left subtree and right subtree.
- If either the left subtree or right subtree is unbalanced, return right away.
Cost:
- O(n) time, O(n) stack space.
*/
package leetcode
import (
"testing"
"github.com/hoanhan101/algo/common"
)
func TestIsBalanced(t *testing.T) {
t1 := &common.TreeNode{Left: nil, Value: 1, Right: nil}
t2 := &common.TreeNode{Left: nil, Value: 1, Right: nil}
t2.Right = &common.TreeNode{Left: nil, Value: 2, Right: nil}
t3 := &common.TreeNode{Left: nil, Value: 1, Right: nil}
t3.Right = &common.TreeNode{Left: nil, Value: 2, Right: nil}
t3.Right.Right = &common.TreeNode{Left: nil, Value: 3, Right: nil}
t4 := &common.TreeNode{Left: nil, Value: 1, Right: nil}
t4.Left = &common.TreeNode{Left: nil, Value: 2, Right: nil}
t4.Right = &common.TreeNode{Left: nil, Value: 3, Right: nil}
t4.Right.Right = &common.TreeNode{Left: nil, Value: 4, Right: nil}
t5 := &common.TreeNode{Left: nil, Value: 1, Right: nil}
t5.Left = &common.TreeNode{Left: nil, Value: 2, Right: nil}
t5.Right = &common.TreeNode{Left: nil, Value: 3, Right: nil}
t5.Right.Right = &common.TreeNode{Left: nil, Value: 4, Right: nil}
t5.Right.Right.Right = &common.TreeNode{Left: nil, Value: 5, Right: nil}
t6 := &common.TreeNode{Left: nil, Value: 1, Right: nil}
t6.Left = &common.TreeNode{Left: nil, Value: 2, Right: nil}
t6.Left.Left = &common.TreeNode{Left: nil, Value: 4, Right: nil}
t6.Left.Right = &common.TreeNode{Left: nil, Value: 5, Right: nil}
t6.Left.Right.Right = &common.TreeNode{Left: nil, Value: 6, Right: nil}
t6.Right = &common.TreeNode{Left: nil, Value: 3, Right: nil}
t6.Right.Right = &common.TreeNode{Left: nil, Value: 7, Right: nil}
t6.Right.Right.Left = &common.TreeNode{Left: nil, Value: 8, Right: nil}
t6.Right.Right.Right = &common.TreeNode{Left: nil, Value: 9, Right: nil}
t6.Right.Right.Right.Right = &common.TreeNode{Left: nil, Value: 10, Right: nil}
tests := []struct {
in *common.TreeNode
expected bool
}{
{t1, true},
{t2, true},
{t3, false},
{t4, true},
{t5, false},
{t6, false},
}
for _, tt := range tests {
common.Equal(
t,
tt.expected,
isBalanced(tt.in),
)
}
}
func isBalanced(t *common.TreeNode) bool {
return maxDepth(t) != -1
}
func maxDepth(t *common.TreeNode) int {
if t == nil {
return 0
}
maxLeft := maxDepth(t.Left)
if maxLeft == -1 {
return -1
}
maxRight := maxDepth(t.Right)
if maxRight == -1 {
return -1
}
if common.IsLessThan1Apart(maxLeft, maxRight) {
return common.Max(maxLeft, maxRight) + 1
}
return -1
}