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.
76 lines
1.2 KiB
76 lines
1.2 KiB
5 years ago
|
## sortedlistmerge
|
||
6 years ago
|
|
||
6 years ago
|
### Instructions
|
||
6 years ago
|
|
||
5 years ago
|
Write a function `SortedListMerge` that merges two lists `n1` and `n2` in ascending order.
|
||
6 years ago
|
|
||
5 years ago
|
- During the tests `n1` and `n2` will already be initially sorted.
|
||
6 years ago
|
|
||
6 years ago
|
### Expected function and structure
|
||
6 years ago
|
|
||
|
```go
|
||
5 years ago
|
func SortedListMerge(n1 *NodeI, n2 *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}
|
||
5 years ago
|
|
||
|
if l == nil {
|
||
|
return n
|
||
|
}
|
||
|
iterator := l
|
||
|
for iterator.Next != nil {
|
||
|
iterator = iterator.Next
|
||
|
}
|
||
|
iterator.Next = n
|
||
|
return l
|
||
|
}
|
||
|
|
||
6 years ago
|
func main() {
|
||
5 years ago
|
var link *piscine.NodeI
|
||
|
var link2 *piscine.NodeI
|
||
6 years ago
|
|
||
5 years ago
|
link = listPushBack(link, 3)
|
||
5 years ago
|
link = listPushBack(link, 5)
|
||
5 years ago
|
link = listPushBack(link, 7)
|
||
6 years ago
|
|
||
5 years ago
|
link2 = listPushBack(link2, -2)
|
||
5 years ago
|
link2 = listPushBack(link2, 9)
|
||
6 years ago
|
|
||
5 years ago
|
PrintList(piscine.SortedListMerge(link2, link))
|
||
6 years ago
|
}
|
||
|
```
|
||
|
|
||
|
And its output :
|
||
|
|
||
|
```console
|
||
5 years ago
|
student@ubuntu:~/[[ROOT]]/test$ go build
|
||
|
student@ubuntu:~/[[ROOT]]/test$ ./test
|
||
5 years ago
|
-2 -> 3 -> 5 -> 7 -> 9 -> <nil>
|
||
5 years ago
|
student@ubuntu:~/[[ROOT]]/test$
|
||
6 years ago
|
```
|