Home
About
Blog
Products
Forum
Support
Contact
Sunbelt Computer Software
PL/B Language Development and Support
Home
About
Blog
Products
Forum
Support
Contact
algorithms/map/hashtable.py at master · Dingxiaofei2017/algorithms · GitHub
Skip to content
Navigation Menu
Sign in
Appearance settings
Platform
AI CODE CREATION
GitHub Copilot
Write better code with AI
GitHub Copilot app
Direct agents from issue to merge
MCP Registry
Integrate external tools
DEVELOPER WORKFLOWS
Actions
Automate any workflow
Codespaces
Instant dev environments
Issues
Plan and track work
Code Review
Manage code changes
Code Quality
Enforce quality at merge
APPLICATION SECURITY
GitHub Advanced Security
Find and fix vulnerabilities
Code security
Secure your code as you build
Secret protection
Stop leaks before they start
EXPLORE
Why GitHub
Documentation
Blog
Changelog
Marketplace
View all features
Solutions
BY COMPANY SIZE
Enterprises
Small and medium teams
Startups
Nonprofits
BY USE CASE
App Modernization
DevSecOps
DevOps
CI/CD
View all use cases
BY INDUSTRY
Healthcare
Financial services
Manufacturing
Government
View all industries
View all solutions
Resources
EXPLORE BY TOPIC
AI
Software Development
DevOps
Security
View all topics
EXPLORE BY TYPE
Customer stories
Events & webinars
Ebooks & reports
Business insights
GitHub Skills
SUPPORT & SERVICES
Documentation
Customer support
Community forum
Trust center
Partners
View all resources
Open Source
COMMUNITY
GitHub Sponsors
Fund open source developers
PROGRAMS
Security Lab
Maintainer Community
GitHub Stars
Archive Program
REPOSITORIES
Topics
Trending
Collections
Enterprise
ENTERPRISE SOLUTIONS
Enterprise platform
AI-powered developer platform
AVAILABLE ADD-ONS
GitHub Advanced Security
Enterprise-grade security features
Copilot for Business
Enterprise-grade AI features
Premium Support
Enterprise-grade 24/7 support
Pricing
Search
/
Sign in
Sign up
Appearance settings
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
Dingxiaofei2017
/
algorithms
Public
forked from
keon/algorithms
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Files
Expand file tree
master
Breadcrumbs
algorithms
/
map
/
hashtable.py
Copy path
Blame
More file actions
Blame
More file actions
Latest commit
History
History
History
200 lines (165 loc) · 6.03 KB
master
Breadcrumbs
algorithms
/
map
/
hashtable.py
Copy path
Top
File metadata and controls
Code
Blame
200 lines (165 loc) · 6.03 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
from
unittest
import
TestCase
class
HashTable
(
object
):
"""
HashMap Data Type
HashMap() Create a new, empty map. It returns an empty map collection.
put(key, val) Add a new key-value pair to the map. If the key is already in the map then replace
the old value with the new value.
get(key) Given a key, return the value stored in the map or None otherwise.
del_(key) or del map[key] Delete the key-value pair from the map using a statement of the form del map[key].
len() Return the number of key-value pairs stored in the map.
in Return True for a statement of the form key in map, if the given key is in the map, False otherwise.
"""
_empty
=
object
()
_deleted
=
object
()
def
__init__
(
self
,
size
=
11
):
self
.
size
=
size
self
.
_len
=
0
self
.
_keys
=
[
self
.
_empty
]
*
size
# keys
self
.
_values
=
[
self
.
_empty
]
*
size
# values
def
put
(
self
,
key
,
value
):
initial_hash
=
hash_
=
self
.
hash
(
key
)
while
True
:
if
self
.
_keys
[
hash_
]
is
self
.
_empty
or
self
.
_keys
[
hash_
]
is
self
.
_deleted
:
# can assign to hash_ index
self
.
_keys
[
hash_
]
=
key
self
.
_values
[
hash_
]
=
value
self
.
_len
+=
1
return
elif
self
.
_keys
[
hash_
]
==
key
:
# key already exists here, assign over
self
.
_keys
[
hash_
]
=
key
self
.
_values
[
hash_
]
=
value
return
hash_
=
self
.
_rehash
(
hash_
)
if
initial_hash
==
hash_
:
# table is full
raise
ValueError
(
"Table is full"
)
def
get
(
self
,
key
):
initial_hash
=
hash_
=
self
.
hash
(
key
)
while
True
:
if
self
.
_keys
[
hash_
]
is
self
.
_empty
:
# That key was never assigned
return
None
elif
self
.
_keys
[
hash_
]
==
key
:
# key found
return
self
.
_values
[
hash_
]
hash_
=
self
.
_rehash
(
hash_
)
if
initial_hash
==
hash_
:
# table is full and wrapped around
return
None
def
del_
(
self
,
key
):
initial_hash
=
hash_
=
self
.
hash
(
key
)
while
True
:
if
self
.
_keys
[
hash_
]
is
self
.
_empty
:
# That key was never assigned
return
None
elif
self
.
_keys
[
hash_
]
==
key
:
# key found, assign with deleted sentinel
self
.
_keys
[
hash_
]
=
self
.
_deleted
self
.
_values
[
hash_
]
=
self
.
_deleted
self
.
_len
-=
1
return
hash_
=
self
.
_rehash
(
hash_
)
if
initial_hash
==
hash_
:
# table is full and wrapped around
return
None
def
hash
(
self
,
key
):
return
key
%
self
.
size
def
_rehash
(
self
,
old_hash
):
"""
linear probing
"""
return
(
old_hash
+
1
)
%
self
.
size
def
__getitem__
(
self
,
key
):
return
self
.
get
(
key
)
def
__delitem__
(
self
,
key
):
return
self
.
del_
(
key
)
def
__setitem__
(
self
,
key
,
value
):
self
.
put
(
key
,
value
)
def
__len__
(
self
):
return
self
.
_len
class
ResizableHashTable
(
HashTable
):
MIN_SIZE
=
8
def
__init__
(
self
):
super
().
__init__
(
self
.
MIN_SIZE
)
def
put
(
self
,
key
,
value
):
rv
=
super
().
put
(
key
,
value
)
# increase size of dict * 2 if filled >= 2/3 size (like python dict)
if
len
(
self
)
>=
(
self
.
size
*
2
)
/
3
:
self
.
__resize
()
def
__resize
(
self
):
keys
,
values
=
self
.
_keys
,
self
.
_values
self
.
size
*=
2
# this will be the new size
self
.
_len
=
0
self
.
_keys
=
[
self
.
_empty
]
*
self
.
size
self
.
_values
=
[
self
.
_empty
]
*
self
.
size
for
key
,
value
in
zip
(
keys
,
values
):
if
key
is
not
self
.
_empty
and
key
is
not
self
.
_deleted
:
self
.
put
(
key
,
value
)
class
TestHashTable
(
TestCase
):
def
test_one_entry
(
self
):
m
=
HashTable
(
10
)
m
.
put
(
1
,
'1'
)
self
.
assertEqual
(
'1'
,
m
.
get
(
1
))
def
test_add_entry_bigger_than_table_size
(
self
):
m
=
HashTable
(
10
)
m
.
put
(
11
,
'1'
)
self
.
assertEqual
(
'1'
,
m
.
get
(
11
))
def
test_get_none_if_key_missing_and_hash_collision
(
self
):
m
=
HashTable
(
10
)
m
.
put
(
1
,
'1'
)
self
.
assertEqual
(
None
,
m
.
get
(
11
))
def
test_two_entries_with_same_hash
(
self
):
m
=
HashTable
(
10
)
m
.
put
(
1
,
'1'
)
m
.
put
(
11
,
'11'
)
self
.
assertEqual
(
'1'
,
m
.
get
(
1
))
self
.
assertEqual
(
'11'
,
m
.
get
(
11
))
def
test_get_on_full_table_does_halts
(
self
):
# and does not search forever
m
=
HashTable
(
10
)
for
i
in
range
(
10
,
20
):
m
.
put
(
i
,
i
)
self
.
assertEqual
(
None
,
m
.
get
(
1
))
def
test_delete_key
(
self
):
m
=
HashTable
(
10
)
m
.
put
(
1
,
1
)
m
.
del_
(
1
)
self
.
assertEqual
(
None
,
m
.
get
(
1
))
def
test_delete_key_and_reassign
(
self
):
m
=
HashTable
(
10
)
m
.
put
(
1
,
1
)
del
m
[
1
]
m
.
put
(
1
,
2
)
self
.
assertEqual
(
2
,
m
.
get
(
1
))
def
test_assigning_to_full_table_throws_error
(
self
):
m
=
HashTable
(
3
)
m
.
put
(
1
,
1
)
m
.
put
(
2
,
2
)
m
.
put
(
3
,
3
)
with
self
.
assertRaises
(
ValueError
):
m
.
put
(
4
,
4
)
def
test_len_trivial
(
self
):
m
=
HashTable
(
10
)
self
.
assertEqual
(
0
,
len
(
m
))
for
i
in
range
(
10
):
m
.
put
(
i
,
i
)
self
.
assertEqual
(
i
+
1
,
len
(
m
))
def
test_len_after_deletions
(
self
):
m
=
HashTable
(
10
)
m
.
put
(
1
,
1
)
self
.
assertEqual
(
1
,
len
(
m
))
m
.
del_
(
1
)
self
.
assertEqual
(
0
,
len
(
m
))
m
.
put
(
11
,
42
)
self
.
assertEqual
(
1
,
len
(
m
))
def
test_resizable_hash_table
(
self
):
m
=
ResizableHashTable
()
self
.
assertEqual
(
ResizableHashTable
.
MIN_SIZE
,
m
.
size
)
for
i
in
range
(
ResizableHashTable
.
MIN_SIZE
):
m
.
put
(
i
,
'foo'
)
self
.
assertEqual
(
ResizableHashTable
.
MIN_SIZE
*
2
,
m
.
size
)
self
.
assertEqual
(
'foo'
,
m
.
get
(
1
))
self
.
assertEqual
(
'foo'
,
m
.
get
(
3
))
self
.
assertEqual
(
'foo'
,
m
.
get
(
ResizableHashTable
.
MIN_SIZE
-
1
))
You can’t perform that action at this time.