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.
78 lines
1.3 KiB
78 lines
1.3 KiB
5 years ago
|
## sortlistinsert
|
||
6 years ago
|
|
||
6 years ago
|
### Instructions
|
||
6 years ago
|
|
||
5 years ago
|
Write a function `SortListInsert` that inserts `data_ref` in the linked list `l` while keeping the list sorted in ascending order.
|
||
6 years ago
|
|
||
5 years ago
|
- During the tests the list passed as an argument will be already sorted.
|
||
6 years ago
|
|
||
6 years ago
|
### Expected function and structure
|
||
6 years ago
|
|
||
|
```go
|
||
5 years ago
|
func SortListInsert(l *NodeI, data_ref int) *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
|
|
||
5 years ago
|
func listPushBack(l *piscine.NodeI, data int) *piscine.NodeI {
|
||
|
n := &piscine.NodeI{Data: data}
|
||
5 years ago
|
|
||
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, 1)
|
||
|
link = listPushBack(link, 4)
|
||
|
link = listPushBack(link, 9)
|
||
6 years ago
|
|
||
|
PrintList(link)
|
||
|
|
||
5 years ago
|
link = piscine.SortListInsert(link, -2)
|
||
|
link = piscine.SortListInsert(link, 2)
|
||
6 years ago
|
PrintList(link)
|
||
|
}
|
||
|
```
|
||
|
|
||
|
And its output :
|
||
|
|
||
|
```console
|
||
5 years ago
|
student@ubuntu:~/[[ROOT]]/test$ go build
|
||
|
student@ubuntu:~/[[ROOT]]/test$ ./test
|
||
5 years ago
|
1 -> 4 -> 9 -> <nil>
|
||
|
-2 -> 1 -> 2 -> 4 -> 9 -> <nil>
|
||
5 years ago
|
student@ubuntu:~/[[ROOT]]/test$
|
||
6 years ago
|
```
|