Golang : Of hash table and hash map
A short note for myself. Was looking to build a knowledge base consisting of a keyword or key string and then lookup for the nearest possible string answer.
This kind situation calls for a hash table and was looking for hash table equivalent in Golang and ....just found out that Golang's map is equivalent to other programming languages hash map or hash table! #facepalm to myself.
In general, a hash map is useful as it offers fast lookups, adds, and deletes. In Golang, the built-in map type has these properties.
NOTE : Map types are reference types, like pointers or slices, and so the value of m above is nil; it doesn't point to an initialized map. A nil map behaves like an empty map when reading, but attempts to write to a nil map will cause a runtime panic; don't do that. To initialize a map, use the built in make function:
m = make(map[string]int)
Reference :
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
+9.7k Golang : Capture stdout of a child process and act according to the result
+1.9k Unix/Linux : How to find out the hard disk size?
+3.2k Golang : Auto-generate reply email with text/template package
+12.7k SSL : How to check if current certificate is sha1 or sha2
+9.2k Golang : Convert date string to variants of time.Time type examples
+3.1k Golang : Simple Jawi(Yawi) to Rumi(Latin/Romanize) converter
+2.8k Golang : Dealing with struct's private part
+7.7k Golang : Get URI segments by number and assign as variable example
+2.2k Python : Print unicode escape characters and string
+2.8k Golang : Handling Yes No Quit query input
+2.7k Golang : Reverse by word