Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upGitHub is where the world builds software
Millions of developers and companies build, ship, and maintain their software on GitHub — the largest and most advanced development platform in the world.
哈希表(Hash Table),又叫散列表,是一种用于存储键值对(key value pair)的数据结构,因为 Hash Table 根据key 查询 value 的速度很快,所以它常用于实现 Map、Dictinary、Object 等数据结构。
一个Hash Table通常具有下列方法:
add:增加一组键值对remove:删除一组键值对lookup:查找一个键对应的值哈希表的简易实现:
The text was updated successfully, but these errors were encountered: