GO language program with an example of Hash Table
Maps are un-ordered collections, and there's no way to predict the order in which the key/value pairs will be returned. Every time when you run the program, every iteration over a map could return a different order.
Example
// GO language program with an example of Hash Table
package main
import (
"fmt"
)
func main() {
var country map[int]string
country = make(map[int] string)
country[1]="India"
country[2]="China"
country[3]="Pakistan"
country[4]="Germany"
country[5]="Australia"
country[6]="Indonesia"
for i, j := range country {
fmt.Printf("Key: %d Value: %s\n", i, j)
}
}
Most Helpful This Week
3 Different Examples - How State Works in React?
Golang program for implementation of Bubble Sort
Modernizing Legacy Applications: Critical Tips for Organizational Upgrades
Comparing Structs with the Different Values Assigned to Data Fields
Panic: runtime error: index out of range error in Golang
How do you handle HTTP server health checks in Go?