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
GO Program to Calculate Area of Rectangle and Square
Contains, ContainsAny, Count and EqualFold string functions in Go Language
GO Program to take user input and addition of two strings
Program in Go language to Program to Add Two Matrix Using Multi-dimensional Arrays
GO Program to Check Armstrong Number
GO Program to Calculate Sum of Natural Numbers Using for.....Loop