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.
69 lines
1.0 KiB
69 lines
1.0 KiB
5 years ago
|
## listclear
|
||
6 years ago
|
|
||
6 years ago
|
### Instructions
|
||
6 years ago
|
|
||
5 years ago
|
Write a function `ListClear` that deletes all `nodes` from a linked list `l`.
|
||
6 years ago
|
|
||
5 years ago
|
- Tip: assign the list's pointer to `nil`.
|
||
6 years ago
|
|
||
6 years ago
|
### Expected function and structure
|
||
6 years ago
|
|
||
|
```go
|
||
|
func ListClear(l *List) {
|
||
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 (
|
||
|
"fmt"
|
||
5 years ago
|
|
||
6 years ago
|
piscine ".."
|
||
|
)
|
||
|
|
||
|
type List = piscine.List
|
||
5 years ago
|
type Node = piscine.NodeL
|
||
6 years ago
|
|
||
|
func PrintList(l *List) {
|
||
|
link := l.Head
|
||
|
for link != nil {
|
||
|
fmt.Print(link.Data, " -> ")
|
||
|
link = link.Next
|
||
|
}
|
||
|
fmt.Println(nil)
|
||
|
}
|
||
|
|
||
|
func main() {
|
||
|
link := &List{}
|
||
|
|
||
|
piscine.ListPushBack(link, "I")
|
||
|
piscine.ListPushBack(link, 1)
|
||
|
piscine.ListPushBack(link, "something")
|
||
|
piscine.ListPushBack(link, 2)
|
||
|
|
||
|
fmt.Println("------list------")
|
||
|
PrintList(link)
|
||
|
piscine.ListClear(link)
|
||
|
fmt.Println("------updated list------")
|
||
|
PrintList(link)
|
||
|
}
|
||
|
```
|
||
|
|
||
|
And its output :
|
||
|
|
||
|
```console
|
||
5 years ago
|
student@ubuntu:~/[[ROOT]]/test$ go build
|
||
|
student@ubuntu:~/[[ROOT]]/test$ ./test
|
||
6 years ago
|
------list------
|
||
|
I -> 1 -> something -> 2 -> <nil>
|
||
|
------updated list------
|
||
|
<nil>
|
||
5 years ago
|
student@ubuntu:~/[[ROOT]]/test$
|
||
6 years ago
|
```
|