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.
61 lines
875 B
61 lines
875 B
6 years ago
|
# listpushback
|
||
|
|
||
|
## Instructions
|
||
|
|
||
|
Write a function `ListPushBack` that inserts a new element `node` at the beginning of the list using `list`
|
||
|
|
||
|
## Expected function and structure
|
||
|
|
||
|
```go
|
||
|
type Node struct {
|
||
|
Data interface{}
|
||
|
Next *Node
|
||
|
}
|
||
|
|
||
|
type List struct {
|
||
|
Head *Node
|
||
|
Tail *Node
|
||
|
}
|
||
|
|
||
|
func ListPushFront(l *list, data interface{}) {
|
||
|
}
|
||
|
```
|
||
|
|
||
|
## Usage
|
||
|
|
||
|
Here is a possible [program](TODO-LINK) to test your function :
|
||
|
|
||
|
```go
|
||
|
package main
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
piscine ".."
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
|
||
|
link := &list{}
|
||
|
|
||
|
piscine.ListPushFront(link, "Hello")
|
||
|
piscine.ListPushFront(link, "man")
|
||
|
piscine.ListPushFront(link, "how are you")
|
||
|
|
||
|
for link.head != nil {
|
||
|
fmt.Println(link.head.data)
|
||
|
link.head = link.head.next
|
||
|
}
|
||
|
}
|
||
|
```
|
||
|
|
||
|
And its output :
|
||
|
|
||
|
```console
|
||
|
student@ubuntu:~/piscine/test$ go build
|
||
|
student@ubuntu:~/piscine/test$ ./test
|
||
|
how are you
|
||
|
man
|
||
|
Hello
|
||
|
student@ubuntu:~/piscine/test$
|
||
|
```
|