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