mirror of https://github.com/01-edu/public.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
766 B
48 lines
766 B
5 years ago
|
## btreeprintroot
|
||
6 years ago
|
|
||
6 years ago
|
### Instructions
|
||
6 years ago
|
|
||
|
Write a function to print the value of the root node of a binary tree.
|
||
|
The nodes must be defined as follows:
|
||
|
|
||
6 years ago
|
### Expected function
|
||
6 years ago
|
|
||
|
```go
|
||
|
type TreeNode struct {
|
||
|
left, right *TreeNode
|
||
|
data string
|
||
|
}
|
||
|
|
||
|
func PrintRoot(root *TreeNode){
|
||
|
|
||
|
}
|
||
|
```
|
||
|
|
||
6 years ago
|
### Usage
|
||
6 years ago
|
|
||
5 years ago
|
Here is a possible program to test your function :
|
||
6 years ago
|
|
||
|
```go
|
||
|
package main
|
||
|
|
||
|
func main() {
|
||
5 years ago
|
// rootNode initialized with the value "who"
|
||
|
// rootNode1 initialized with the value "are"
|
||
|
// rootNode2 initialized with the value "you"
|
||
5 years ago
|
printRoot(rootNode)
|
||
|
printRoot(rootNode1)
|
||
|
printRoot(rootNode2)
|
||
6 years ago
|
}
|
||
|
```
|
||
|
|
||
|
And its output :
|
||
|
|
||
|
```console
|
||
5 years ago
|
student@ubuntu:~/[[ROOT]]/printroot$ go build
|
||
|
student@ubuntu:~/[[ROOT]]/printroot$ ./printroot
|
||
6 years ago
|
who
|
||
|
are
|
||
|
you
|
||
5 years ago
|
student@ubuntu:~/[[ROOT]]/test$
|
||
6 years ago
|
```
|