Golang : Iterating Elements Over A List
In this short tutorial, we will learn how to iterate the elements over a list. The code below will populate the list first and then perform a "next" scan and then a "prev" scan to list out the elements inside the list.
package main
import (
"container/list"
"fmt"
)
func main() {
alist := list.New()
alist.PushBack("a")
alist.PushBack("b")
alist.PushBack("c")
fmt.Println("Next")
for e := alist.Front(); e != nil; e = e.Next() {
fmt.Println(e.Value) // print out the elements
}
fmt.Println("---------")
fmt.Println("Prev")
for e := alist.Back(); e != nil; e = e.Prev() {
fmt.Println(e.Value) // print out the elements
}
}
Output :
Next
a
b
c
---------
Prev
c
b
a
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+5.6k CodeIgniter/PHP : Remove empty lines above RSS or ATOM xml tag
+15.1k Golang : invalid character ',' looking for beginning of value
+14.6k Golang : How to check for empty array string or string?
+11.4k Golang : Surveillance with web camera and OpenCV
+10.3k Golang : ISO8601 Duration Parser example
+5.7k Golang : Denco multiplexer example
+7.6k Swift : Convert (cast) String to Double
+13.2k Golang : Qt progress dialog example
+15k Golang : Find location by IP address and display with Google Map
+30.9k Golang : bufio.NewReader.ReadLine to read file line by line
+8.6k Golang : Gaussian blur on image and camera video feed examples
+10.7k Golang : Sieve of Eratosthenes algorithm