Problem
Design a HashMap without using any built-in hash table libraries.
To be specific, your design should include these functions:
put(key, value)
: Insert a (key, value) pair into the HashMap. If the value already exists in the HashMap, update the value.get(key)
: Returns the value to which the specified key is mapped, or -1 if this map contains no mapping for the key.remove(key)
: Remove the mapping for the value key if this map contains the mapping for the key.
Example:
1 | MyHashMap hashMap = new MyHashMap(); |
Note:
- All keys and values will be in the range of
[0, 1000000]
. - The number of operations will be in the range of
[1, 10000]
. - Please do not use the built-in HashMap library.
Analysis
题目要求我们设计一个hashmap,要求的操作有get
、put
和remove
。题目不允许使用map的数据结构,但是可以使用其他的数据结构。因为key的范围是[0, 1000000]
,所以我们不妨直接开一个1000000的数组来存放,key就是下标,value就是对应的值。
因为这里要区分key存在和不存在的问题,所以要用-1标记不存在的key。数组初始化的时候就是-1,remove
操作后也是-1。
Solution
无。
Code
1 | class MyHashMap { |
Summary
这道题目其实就是用一个数组实现一个hashmap,难度不大,但是在一些基础的面试题会遇到。这道题目的分享到这里,感谢你的支持!