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.
 
 
 
 

1009 B

listpushback

Instructions

Write a function ListForEach that applies a function given as argument to the information within each of the list's links.

  • The function given as argument must have a pointer as argument: l *list

Expected function and structure

type node struct {
	data interface{}
	next *node
}

type list struct {
	head *node
	tail *node
}

func ListForEach(l *list, f func(l *list)) {
}

Usage

Here is a possible program to test your function :

package main

import (
	"fmt"
	piscine ".."
)

func main() {
	link := &list{}

	piscine.ListPushBack(link, 1)
	piscine.ListPushBack(link, 2)
	piscine.ListPushBack(link, 3)
	piscine.ListPushBack(link, 4)

	piscine.ListForEach(link, piscine.ListReverse)

	for link.head != nil {
		fmt.Println(link.head.data)
		link.head = link.head.next
	}
}

And its output :

student@ubuntu:~/piscine/test$ go build
student@ubuntu:~/piscine/test$ ./test
4
3
2
1
student@ubuntu:~/piscine/test$