You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
GreenFaith edited this page Aug 3, 2014
·
2 revisions
Hash Map
Implement
One of the most useful data structures in computer science is the hash table.
Many hash table implementations exist with varying properties, but in general they offer fast lookups, adds, and deletes.
Go provides a built-in map type that implements a hash table.