Skip to content
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.

Reference

[hashmap wiki]
[go map]

Clone this wiki locally