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.
60 lines
822 B
60 lines
822 B
5 years ago
|
## listlast
|
||
6 years ago
|
|
||
6 years ago
|
### Instructions
|
||
6 years ago
|
|
||
5 years ago
|
Write a function `ListLast` that returns the last element of a linked list `l`.
|
||
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 ListLast(l *List) 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 (
|
||
|
"fmt"
|
||
5 years ago
|
|
||
6 years ago
|
piscine ".."
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
5 years ago
|
link := &piscine.List{}
|
||
|
link2 := &piscine.List{}
|
||
6 years ago
|
|
||
|
piscine.ListPushBack(link, "three")
|
||
|
piscine.ListPushBack(link, 3)
|
||
|
piscine.ListPushBack(link, "1")
|
||
|
|
||
5 years ago
|
fmt.Println(piscine.ListLast(link))
|
||
|
fmt.Println(piscine.ListLast(link2))
|
||
6 years ago
|
}
|
||
|
```
|
||
|
|
||
|
And its output :
|
||
|
|
||
|
```console
|
||
5 years ago
|
student@ubuntu:~/[[ROOT]]/test$ go build
|
||
|
student@ubuntu:~/[[ROOT]]/test$ ./test
|
||
5 years ago
|
1
|
||
6 years ago
|
<nil>
|
||
5 years ago
|
student@ubuntu:~/[[ROOT]]/test$
|
||
6 years ago
|
```
|