forked from super30admin/Design-1
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHashmap.py
More file actions
74 lines (63 loc) · 1.91 KB
/
Hashmap.py
File metadata and controls
74 lines (63 loc) · 1.91 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
72
73
74
class Node:
def __init__(self, key, val):
self.pair = (key, val)
self.next = None
class MyHashMap(object):
def __init__(self):
"""
Initialize your data structure here.
"""
self.m = 10000
self.hasharray = [False] * self.m
def put(self, key, value):
"""
value will always be non-negative.
:type key: int
:type value: int
:rtype: None
"""
hashcode = key % self.m
temp = self.hasharray[hashcode]
if not temp:
self.hasharray[hashcode] = Node(key, value)
else:
while (True):
if temp.pair[0] == key:
temp.pair = (key, value)
return
if temp.next is None: break
temp = temp.next
temp.next = Node(key, value)
def get(self, key):
"""
Returns the value to which the specified key is mapped, or -1 if this map contains no mapping for the key
:type key: int
:rtype: int
"""
hashcode = key % self.m
temp = self.hasharray[hashcode]
while (temp):
if temp.pair[0] == key:
return temp.pair[1]
temp = temp.next
return -1
def remove(self, key):
"""
Removes the mapping of the specified value key if this map contains a mapping for the key
:type key: int
:rtype: None
"""
hashcode = key % self.m
temp = prev = self.hasharray[hashcode]
if not temp: return
if temp.pair[0] == key:
self.hasharray[hashcode] = temp.next
else:
temp = temp.next
while temp:
if temp.pair[0] == key:
prev.next = temp.next
return
else:
prev = prev.next
temp = temp.next