-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbinary-tree-paths.go
68 lines (63 loc) · 1.35 KB
/
binary-tree-paths.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
package main
import (
"fmt"
)
type TreeNode struct {
Val int
Left *TreeNode
Right *TreeNode
}
func binaryTreePaths(root *TreeNode) []string {
result := []string{}
for _, node := range binaryPath(root) {
path := ""
for i, num := range node {
if i == 0 {
path = fmt.Sprintf("%d", num)
} else {
path = fmt.Sprintf("%s->%d", path, num)
}
}
result = append(result, path)
}
return result
}
func binaryPath(node *TreeNode) [][]int {
if node == nil {
return nil
}
path := [][]int{}
current := []int{node.Val}
if node.Left != nil {
leftPath := binaryPath(node.Left)
fmt.Println("Current node: ", node.Val, "\tleftPath: ", leftPath)
if len(leftPath) > 0 {
for _, childPath := range leftPath {
if len(childPath) <= 0 {
continue
}
path = append(path, append(current, childPath...))
}
}
}
if node.Right != nil {
rightPath := binaryPath(node.Right)
fmt.Println("Current node: ", node.Val, "\trightPath: ", rightPath)
if len(rightPath) > 0 {
for _, childPath := range rightPath {
if len(childPath) <= 0 {
continue
}
path = append(path, append(current, childPath...))
}
}
}
if len(path) == 0 {
path = append(path, current)
}
return path
}
func main() {
root := &TreeNode{1, &TreeNode{2, &TreeNode{3, nil, nil}, nil}, &TreeNode{4, nil, nil}}
fmt.Println(binaryTreePaths(root))
}