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.
63 lines
916 B
63 lines
916 B
5 years ago
|
## listpushfront
|
||
6 years ago
|
|
||
6 years ago
|
### Instructions
|
||
6 years ago
|
|
||
5 years ago
|
Write a function `ListPushFront` that inserts a new element `NodeL` at the beginning of the list `l` while using the structure `List`
|
||
6 years ago
|
|
||
6 years ago
|
### Expected function and structure
|
||
6 years ago
|
|
||
|
```go
|
||
5 years ago
|
type NodeL struct {
|
||
6 years ago
|
Data interface{}
|
||
5 years ago
|
Next *NodeL
|
||
6 years ago
|
}
|
||
|
|
||
|
type List struct {
|
||
5 years ago
|
Head *NodeL
|
||
|
Tail *NodeL
|
||
6 years ago
|
}
|
||
|
|
||
5 years ago
|
func ListPushFront(l *List, data interface{}) {
|
||
5 years ago
|
|
||
6 years ago
|
}
|
||
|
```
|
||
|
|
||
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
|
||
|
|
||
|
import (
|
||
5 years ago
|
"fmt"
|
||
5 years ago
|
|
||
|
piscine ".."
|
||
6 years ago
|
)
|
||
|
|
||
|
func main() {
|
||
|
|
||
5 years ago
|
link := &piscine.List{}
|
||
6 years ago
|
|
||
|
piscine.ListPushFront(link, "Hello")
|
||
|
piscine.ListPushFront(link, "man")
|
||
|
piscine.ListPushFront(link, "how are you")
|
||
|
|
||
5 years ago
|
it := link.Head
|
||
|
for it != nil {
|
||
5 years ago
|
fmt.Print(it.Data, " ")
|
||
5 years ago
|
it = it.Next
|
||
6 years ago
|
}
|
||
5 years ago
|
fmt.Println()
|
||
6 years ago
|
}
|
||
|
```
|
||
|
|
||
|
And its output :
|
||
|
|
||
|
```console
|
||
5 years ago
|
student@ubuntu:~/[[ROOT]]/test$ go build
|
||
|
student@ubuntu:~/[[ROOT]]/test$ ./test
|
||
5 years ago
|
how are you man Hello
|
||
5 years ago
|
student@ubuntu:~/[[ROOT]]/test$
|
||
6 years ago
|
```
|