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.
|
|
|
## btreeprintroot
|
|
|
|
|
|
|
|
### Instructions
|
|
|
|
|
|
|
|
Write a function to print the value of the root node of a binary tree.
|
|
|
|
The nodes must be defined as follows:
|
|
|
|
|
|
|
|
### Expected function
|
|
|
|
|
|
|
|
```go
|
|
|
|
type TreeNode struct {
|
|
|
|
left, right *TreeNode
|
|
|
|
data string
|
|
|
|
}
|
|
|
|
|
|
|
|
func PrintRoot(root *TreeNode){
|
|
|
|
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
### Usage
|
|
|
|
|
|
|
|
Here is a possible program to test your function :
|
|
|
|
|
|
|
|
```go
|
|
|
|
package main
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
//rootNode initialized with the value "who"
|
|
|
|
//rootNode1 initialized with the value "are"
|
|
|
|
//rootNode2 initialized with the value "you"
|
|
|
|
printRoot(rootNode)
|
|
|
|
printRoot(rootNode1)
|
|
|
|
printRoot(rootNode2)
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
And its output :
|
|
|
|
|
|
|
|
```console
|
|
|
|
student@ubuntu:~/[[ROOT]]/printroot$ go build
|
|
|
|
student@ubuntu:~/[[ROOT]]/printroot$ ./printroot
|
|
|
|
who
|
|
|
|
are
|
|
|
|
you
|
|
|
|
student@ubuntu:~/[[ROOT]]/test$
|
|
|
|
```
|