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.
79 lines
1.2 KiB
79 lines
1.2 KiB
5 years ago
|
## listsort
|
||
6 years ago
|
|
||
6 years ago
|
### Instructions
|
||
6 years ago
|
|
||
5 years ago
|
Write a function `ListSort` that sorts the nodes of a linked list by ascending order.
|
||
6 years ago
|
|
||
5 years ago
|
- The `NodeI` structure will be the only one used.
|
||
6 years ago
|
|
||
6 years ago
|
### Expected function and structure
|
||
6 years ago
|
|
||
|
```go
|
||
5 years ago
|
type NodeI struct {
|
||
5 years ago
|
Data int
|
||
5 years ago
|
Next *NodeI
|
||
6 years ago
|
}
|
||
|
|
||
5 years ago
|
func ListSort(l *NodeI) *NodeI {
|
||
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 ".."
|
||
|
)
|
||
|
|
||
5 years ago
|
func PrintList(l *piscine.NodeI) {
|
||
5 years ago
|
it := l
|
||
|
for it != nil {
|
||
|
fmt.Print(it.Data, " -> ")
|
||
|
it = it.Next
|
||
6 years ago
|
}
|
||
5 years ago
|
fmt.Print(nil, "\n")
|
||
6 years ago
|
}
|
||
|
|
||
5 years ago
|
func listPushBack(l *piscine.NodeI, data int) *piscine.NodeI {
|
||
|
n := &piscine.NodeI{Data: data}
|
||
6 years ago
|
|
||
|
if l == nil {
|
||
5 years ago
|
return n
|
||
6 years ago
|
}
|
||
|
iterator := l
|
||
5 years ago
|
for iterator.Next != nil {
|
||
|
iterator = iterator.Next
|
||
6 years ago
|
}
|
||
5 years ago
|
iterator.Next = n
|
||
|
return l
|
||
6 years ago
|
}
|
||
|
|
||
|
func main() {
|
||
5 years ago
|
var link *piscine.NodeI
|
||
6 years ago
|
|
||
5 years ago
|
link = listPushBack(link, 5)
|
||
|
link = listPushBack(link, 4)
|
||
|
link = listPushBack(link, 3)
|
||
|
link = listPushBack(link, 2)
|
||
|
link = listPushBack(link, 1)
|
||
6 years ago
|
|
||
|
PrintList(piscine.ListSort(link))
|
||
|
}
|
||
|
```
|
||
|
|
||
|
And its output :
|
||
|
|
||
|
```console
|
||
5 years ago
|
student@ubuntu:~/[[ROOT]]/test$ go build
|
||
|
student@ubuntu:~/[[ROOT]]/test$ ./test
|
||
5 years ago
|
1 -> 2 -> 3 -> 4 -> 5 -> <nil>
|
||
5 years ago
|
student@ubuntu:~/[[ROOT]]/test$
|
||
6 years ago
|
```
|