-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path706.go
More file actions
71 lines (63 loc) · 1.94 KB
/
Copy path706.go
File metadata and controls
71 lines (63 loc) · 1.94 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/*
* @Time : 2019/4/30 14:11
* @Author : cancan
* @File : 706.go
* @Function : 设计哈希映射
*/
/*
* Question:
* 不使用任何内建的哈希表库设计一个哈希映射
* 具体地说,你的设计应该包含以下的功能
*
* put(key, value):向哈希映射中插入(键,值)的数值对。如果键对应的值已经存在,更新这个值。
* get(key):返回给定的键所对应的值,如果映射中不包含这个键,返回-1。
* remove(key):如果映射中存在这个键,删除这个数值对。
*
* Example:
* MyHashMap hashMap = new MyHashMap();
* hashMap.put(1, 1);
* hashMap.put(2, 2);
* hashMap.get(1); // 返回 1
* hashMap.get(3); // 返回 -1 (未找到)
* hashMap.put(2, 1); // 更新已有的值
* hashMap.get(2); // 返回 1
* hashMap.remove(2); // 删除键为2的数据
* hashMap.get(2); // 返回 -1 (未找到)
*
* Note:
* 所有的值都在 [1, 1000000]的范围内。
* 操作的总数目在[1, 10000]范围内。
* 不要使用内建的哈希库。
*/
package QuestionBank
type MyHashMap struct {
Date map[int]int
}
/** Initialize your data structure here. */
func Constructor706() MyHashMap {
return MyHashMap{Date: make(map[int]int)}
}
/** value will always be non-negative. */
func (this *MyHashMap) Put(key int, value int) {
this.Date[key] = value
}
/** Returns the value to which the specified key is mapped, or -1 if this map contains no mapping for the key */
func (this *MyHashMap) Get(key int) int {
v, ok := this.Date[key]
if ok {
return v
} else {
return -1
}
}
/** Removes the mapping of the specified value key if this map contains a mapping for the key */
func (this *MyHashMap) Remove(key int) {
delete(this.Date, key)
}
/**
* Your MyHashMap object will be instantiated and called as such:
* obj := Constructor();
* obj.Put(key,value);
* param_2 := obj.Get(key);
* obj.Remove(key);
*/