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.
66 lines
1005 B
66 lines
1005 B
6 years ago
|
# listpushback
|
||
|
|
||
|
## Instructions
|
||
|
|
||
|
Write a function `ListForEach` that applies a function given as argument to the information within each of the list's links.
|
||
|
|
||
|
- The function given as argument must have a pointer as argument: `l *list`
|
||
|
|
||
|
## Expected function and structure
|
||
|
|
||
|
```go
|
||
|
type node struct {
|
||
|
data interface{}
|
||
|
next *node
|
||
|
}
|
||
|
|
||
|
type list struct {
|
||
|
head *node
|
||
|
tail *node
|
||
|
}
|
||
|
|
||
|
func ListForEach(l *list, f func(l *list)) {
|
||
|
}
|
||
|
```
|
||
|
|
||
|
## Usage
|
||
|
|
||
|
Here is a possible [program](TODO-LINK) to test your function :
|
||
|
|
||
|
```go
|
||
|
package main
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
piscine ".."
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
link := &list{}
|
||
|
|
||
|
piscine.ListPushBack(link, 1)
|
||
|
piscine.ListPushBack(link, 2)
|
||
|
piscine.ListPushBack(link, 3)
|
||
|
piscine.ListPushBack(link, 4)
|
||
|
|
||
|
piscine.ListForEach(link, piscine.ListReverse)
|
||
|
|
||
|
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
|
||
|
4
|
||
|
3
|
||
|
2
|
||
|
1
|
||
|
student@ubuntu:~/piscine/test$
|
||
|
```
|