Golang : Linked list example
In Golang, I would say that slices superseded list.... as slices would allow you to dynamically resize, pop, push, cut, delete and copy. However, if you still want to use list for LIFO-FIFO stuff... you can use the container/list
package.
Here is a linked list example in Golang.
package main
import (
"container/list"
"fmt"
)
func main() {
// create a new link list
alist := list.New()
fmt.Println("Size before : ", alist.Len()) // list size before
// push element into list
alist.PushBack("a")
alist.PushBack("b")
alist.PushBack("c")
fmt.Println("Size after insert(push): ", alist.Len()) // list size after
// list elements
for e := alist.Front(); e != nil; e = e.Next() {
fmt.Println(e.Value.(string))
}
// pop 3 elements
alist.Remove(alist.Front())
alist.Remove(alist.Front())
alist.Remove(alist.Front())
fmt.Println("Size after remove(pop) : ", alist.Len()) // list size after
}
Output :
Size before : 0
Size after insert(push): 3
a
b
c
Size after remove(pop) : 0
References :
https://www.socketloop.com/references/golang-container-list-new-function-example
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
+7.3k Android Studio : How to detect camera, activate and capture example
+18.6k Golang : convert int to string
+16.8k Golang : Get the IPv4 and IPv6 addresses for a specific network interface
+5.3k Golang : Qt update UI elements with core.QCoreApplication_ProcessEvents
+12k Golang : Sort and reverse sort a slice of runes
+4.8k Golang : A program that contain another program and executes it during run-time
+11.8k Golang : How to parse plain email text and process email header?
+6.8k Android Studio : Hello World example
+8.7k Golang : On lambda, anonymous, inline functions and function literals
+9.3k Golang : Web(Javascript) to server-side websocket example
+6k Golang : How to verify input is rune?
+7.9k Findstr command the Grep equivalent for Windows