Skip to content

Commit 029e868

Browse files
authored
Add details to tree problems (#179)
1 parent 80dd6e4 commit 029e868

9 files changed

+66
-23
lines changed

queue/symmetrical_binary_tree_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ func TestIsTreeSymmetrical(t *testing.T) {
4242
{"2,4,4,5,6,6,5", true},
4343
}
4444
for i, test := range tests {
45-
got, err := IsTreeSymmetrical(tree.Unserialize(test.tree))
45+
got, err := IsTreeSymmetrical(tree.Deserialize(test.tree))
4646
if err != nil {
4747
t.Fatalf("Failed test case #%d. Unexpected error %s", i, err)
4848
}

tree/README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Traversing a tree means exploring every node in a tree and performing some work
1515
1 3 5 7
1616
```
1717

18-
Tree traversal methods are named after the order in which the nodes are explored. For example, in Pre-Order traversal, the node is explored before its children; in Post-Order traversal, the node is explored after its children.
18+
Tree traversal methods are named after the order in which the nodes are explored. For example, in Pre-Order traversal, the node is explored before its children; in Post-Order traversal, the node is explored after its children. Children are always traversed from left to right.
1919

2020
There are many types of trees. Some important tree types include:
2121

@@ -29,7 +29,7 @@ There are many types of trees. Some important tree types include:
2929
1 4 1 * 1 - Is it a binary tree?
3030
/|\ / \ / / \ 2 - Is it a complete binary tree?
3131
/ | \ / \ 2 / \ 3 - Is it a full binary tree?
32-
2 5 6 2 6 / \ * +
32+
2 5 6 2 6 / \ * + 1 2 3
3333
/ \ / \ \ / 3 4 / \ / \ A 0 0 0
3434
3 4 7 8 3 5 5 5 2 2 B 1 0 0
3535
C 1 1 0
@@ -48,7 +48,7 @@ The time complexity of operations such as Search, Deletion, Insertion, and findi
4848

4949
## AVL - Height Balanced BST
5050

51-
A height-balanced binary search tree has a height of O(Log n), and its left and right subtrees of all nodes have equal heights.
51+
An AVL tree is a height-balanced binary search tree has a height of O(Log n), and its left and right subtrees of all nodes have equal heights. AVL stands for the name of the people who came up with the idea.
5252

5353
To maintain balance after an insertion, a single rotation is needed if the insertion is on the outer side, either left-left or right-right, while a double rotation is required if the insertion is on the inner side, either left-right or right-left.
5454

@@ -66,7 +66,7 @@ Insertion and Search are done in O(K), where K is the length word length.
6666

6767
## Application
6868

69-
Trees, such as Binary Search Trees (BSTs), offer O(Log n) time complexity for searches, which is superior to [linked lists](../linkedlist/)' and [array](../array/)'s linear access time. Trees are widely employed in search systems, and operating systems can represent file information using tree structures.
69+
Trees, such as Binary Search Trees (BSTs), offer O(Log n) time complexity for searches, which is superior to [linked lists](../linkedlist/)' and [array](../array/)'s linear access time. Trees are widely employed in search systems. Operating systems can represent file information using tree structures.
7070

7171
## Rehearsal
7272

tree/autocompletion_test.go

+6-3
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,11 @@ TestAutocompletion tests solution(s) with the following signature and problem de
1010
1111
func (t *trie) AutoComplete(word string) []string
1212
13-
Given a word like "car" and a dictionary like {"car","caravan","card","carpet","cap","ca"},
14-
return autocomplete suggestions where the given word is the prefix of a dictionary word
15-
like {"avan","d","pet"}.
13+
Given a dictionary of words and a word, return autocomplete suggestions from the dictionary that
14+
start with the given word.
15+
16+
For example given {"car","caravan","card","carpet","cap","ca"}, and the word "car", return
17+
{"avan","d","pet"} because they are all words that start with "car".
1618
*/
1719
func TestAutocompletion(t *testing.T) {
1820
tests := []struct {
@@ -32,6 +34,7 @@ func TestAutocompletion(t *testing.T) {
3234
{"ab", []string{"abc", "abcc", "abccd", "abd", "abe"}, []string{"c", "cc", "ccd", "d", "e"}},
3335
{"ab", []string{"abc", "abcc", "abcd", "abd", "abe"}, []string{"c", "cc", "cd", "d", "e"}},
3436
{"ab", []string{"abc", "abcd", "abd", "abcc", "abe"}, []string{"c", "cc", "cd", "d", "e"}},
37+
{"car", []string{"car", "caravan", "card", "carpet", "cap", "ca"}, []string{"avan", "d", "pet"}},
3538
}
3639

3740
for i, test := range tests {

tree/evaluate_expression_test.go

+11-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,17 @@ TestEvaluateBinaryExpressionTree tests solution(s) with the following signature
1010
1111
func EvaluateBinaryExpressionTree(node *stringBinaryTreeNode) (float64, error)
1212
13-
Given an expression binary tree like (D) in _Figure2_ evaluate it to a float64 like 100 allowing four
14-
arithmetic operations.
13+
Given an expression binary tree that contains integers and the four basic arithmetic operations, return
14+
the resulting evaluation of the expression.
15+
16+
*
17+
/ \
18+
/ \
19+
* +
20+
/ \ / \
21+
5 5 2 2
22+
23+
For example given "*,*,+,5,5,2,2" representing the above tree return 100 because (5 * 5) * (2 + 2) = 100.
1524
*/
1625
func TestEvaluateBinaryExpressionTree(t *testing.T) {
1726
tests := []struct {

tree/reverse_binary_tree_test.go

+6-3
Original file line numberDiff line numberDiff line change
@@ -5,22 +5,25 @@ import "testing"
55
/*
66
TestReverseBinaryTree tests solution(s) with the following signature and problem description:
77
8-
func ReverseBinaryTree(root *BinaryTreeNode) *BinaryTreeNode
8+
func ReverseBinaryTree(root *BinaryTreeNode) *BinaryTreeNode
99
10+
Given a binary tree, reverse it.
1011
1112
1
1213
/ \
1314
2 3
1415
/ \ / \
1516
4 5 6 7
1617
17-
Reverse a binary search tree, the above tree should become:
18+
For example given the above tree, return:
1819
1920
1
2021
/ \
2122
3 2
2223
/ \ / \
2324
7 6 5 4
25+
26+
Each tree is represented as a string by "1,2,3,4,5,6,7" and "1,3,2,7,6,5,4" respectively.
2427
*/
2528
func TestReverseBinaryTree(t *testing.T) {
2629
tests := []struct {
@@ -34,7 +37,7 @@ func TestReverseBinaryTree(t *testing.T) {
3437
}
3538

3639
for i, test := range tests {
37-
if got := Serialize(ReverseBinaryTree(Unserialize(test.tree))); got != test.reversed {
40+
if got := Serialize(ReverseBinaryTree(Deserialize(test.tree))); got != test.reversed {
3841
t.Fatalf("Failed test case #%d. Want %s got %s", i, test.reversed, got)
3942
}
4043
}

tree/serialize_tree.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ func Serialize(root *BinaryTreeNode) string {
5454
return result
5555
}
5656

57-
// Unserialize unserializes a given string into a binary tree in O(n) time and O(n) space.
58-
func Unserialize(s string) *BinaryTreeNode {
57+
// Deserialize a string into a binary tree in O(n) time and O(n) space.
58+
func Deserialize(s string) *BinaryTreeNode {
5959
if s == "" {
6060
return nil
6161
}

tree/serialize_tree_test.go

+13-4
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,14 @@ import "testing"
55
/*
66
TestSerializeAndUnserializeBinaryTree tests solution(s) with the following signature and problem description:
77
8+
type BinaryTreeNode struct {
9+
Val int
10+
Left *BinaryTreeNode
11+
Right *BinaryTreeNode
12+
}
13+
814
func Serialize(root *BinaryTreeNode) string
9-
func Unserialize(s string) *BinaryTreeNode
15+
func Deserialize(s string) *BinaryTreeNode
1016
1117
1218
4
@@ -16,8 +22,11 @@ TestSerializeAndUnserializeBinaryTree tests solution(s) with the following signa
1622
/ \ / \
1723
3 5
1824
19-
Write two functions to serialize and unserialize a binary tree like the one above to and
20-
from a string like `4,2,6,nil,3,5,nil`.
25+
Given a binary tree, write a serialize and deserialize function that turns it into a string representation
26+
and back.
27+
28+
For example given `4,2,6,nil,3,5,nil` representing the above tree, deserialize it to a *BinaryTreeNode,
29+
and given the *BinaryTreeNode serialize it back to `4,2,6,nil,3,5,nil`.
2130
*/
2231
func TestSerializeAndUnserializeBinaryTree(t *testing.T) {
2332
tests := []string{
@@ -29,7 +38,7 @@ func TestSerializeAndUnserializeBinaryTree(t *testing.T) {
2938
"1,2,nil,4,nil,5,6",
3039
}
3140
for i, test := range tests {
32-
if got := Serialize(Unserialize(test)); got != test {
41+
if got := Serialize(Deserialize(test)); got != test {
3342
t.Fatalf("Failed test case #%d. Want %#v got %#v", i, test, got)
3443
}
3544
}

tree/sorted_array_to_balanced_bsd_test.go

+15-1
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,23 @@ import "testing"
55
/*
66
TestBalancedBinarySearchTree tests solution(s) with the following signature and problem description:
77
8+
type BinaryTreeNode struct {
9+
Val int
10+
Left *BinaryTreeNode
11+
Right *BinaryTreeNode
12+
}
813
func BalancedBinarySearchTree(sorted []int) *BinaryTreeNode
914
10-
Given a sorted array of integers like {1,2,3,4,5} return the root to a balanced BST.
15+
Given a sorted slice of integers like return a string representing the integers as a Balanced Binary Tree (BST).
16+
17+
3
18+
/ \
19+
/ \
20+
2 4
21+
/ \
22+
1 5
23+
24+
For example given return a *BinaryTreeNode that is the root element of the above tree.
1125
*/
1226
func TestBalancedBinarySearchTree(t *testing.T) {
1327
tests := []struct {

tree/traverse_binary_tree_test.go

+8-3
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,20 @@ TestTraverseBinaryTree tests solution(s) with the following signature and proble
1010
1111
func TraverseBinaryTree(root *BinaryTreeNode) ([]int, []int, []int)
1212
13+
Given a binary tree like the above return the tree in-order, pre-order, and post-order traversals.
14+
1315
4
1416
/ \
1517
/ \
1618
2 6
1719
/ \ / \
1820
1 3 5 7
1921
20-
Given a binary tree like the above one create three functions to traverse the
21-
tree in-order, pre-order, and post-order.
22+
For example given the above tree as "4,2,6,1,3,5,7" return:
23+
24+
in-order traversal as [1,2,3,4,5,6,7],
25+
pre-order traversal as [4,2,1,3,6,5,7],
26+
post-order traversal as [1,3,2,5,7,6,4].
2227
*/
2328
func TestTraverseBinaryTree(t *testing.T) {
2429
tests := []struct {
@@ -32,7 +37,7 @@ func TestTraverseBinaryTree(t *testing.T) {
3237
{"4,2,6,nil,3,5", []int{2, 3, 4, 5, 6}, []int{4, 2, 3, 6, 5}, []int{3, 2, 5, 6, 4}},
3338
}
3439
for i, test := range tests {
35-
gotIn, gotPre, gotPost := TraverseBinaryTree(Unserialize(test.tree))
40+
gotIn, gotPre, gotPost := TraverseBinaryTree(Deserialize(test.tree))
3641
if !slices.Equal(gotIn, test.in) {
3742
t.Fatalf("Failed in-order test case #%d. Want %#v got %#v", i, test.in, gotIn)
3843
}

0 commit comments

Comments
 (0)