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.
 
 
 
 
 
 
xpetit e160f65471
Remove relative imports (no longer works with modules) and remove invalid character (" ")
3 years ago
..
README.md Remove relative imports (no longer works with modules) and remove invalid character (" ") 3 years ago

README.md

listpushback

Instructions

Write a function ListPushBack that inserts a new element NodeL at the end of the list l while using the structure List.

Expected function and structure

type NodeL struct {
	Data interface{}
	Next *NodeL
}

type List struct {
	Head *NodeL
	Tail *NodeL
}

func ListPushBack(l *List, data interface{}) {

}

Usage

Here is a possible program to test your function :

package main

import (
	"fmt"
	"piscine"
)

func main() {

	link := &piscine.List{}

	piscine.ListPushBack(link, "Hello")
	piscine.ListPushBack(link, "man")
	piscine.ListPushBack(link, "how are you")

	for link.Head != nil {
		fmt.Println(link.Head.Data)
		link.Head = link.Head.Next
	}
}

And its output :

$ go run .
Hello
man
how are you
$