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.
1.2 KiB
1.2 KiB
listpushback
Instructions
Write a function ListMerge
that places elements of a list l2
at the end of an other list l1
.
-
You can't create new elements!
-
Use pointers when ever you can.
Expected function and structure
type node struct {
data interface{}
next *node
}
type list struct {
head *node
tail *node
}
func ListMerge(l1 *list, l2 *list) {
}
Usage
Here is a possible program to test your function :
package main
import (
"fmt"
piscine ".."
)
func PrintList(l *list) {
m := l.head
for m != nil {
fmt.Print(m.data, " -> ")
m = m.next
}
fmt.Print(l.tail)
fmt.Println()
}
func main() {
link := &list{}
link2 := &list{}
piscine.ListPushBack(link, "a")
piscine.ListPushBack(link, "b")
piscine.ListPushBack(link, "c")
piscine.ListPushBack(link, "d")
piscine.ListPushBack(link2, "e")
piscine.ListPushBack(link2, "f")
piscine.ListPushBack(link2, "g")
piscine.ListPushBack(link2, "h")
piscine.ListMerge(link, link2)
PrintList(link)
}
And its output :
student@ubuntu:~/piscine/test$ go build
student@ubuntu:~/piscine/test$ ./test
a -> b -> c -> d -> e -> f -> g -> h -> <nil>
student@ubuntu:~/piscine/test$