Hashing module
Project description
Hashing
A python module to use hash tables and hash functions in your project.
Usage
data
data = [{"Acre (AC)": ["AC", 1]},
{"Amazonas (AM)": ["AM", 4]},
{"Bahia (BA)": ["BA", 5]},
{"Ceará (CE)": ["CE", 6]},
{"Espírito Santo (ES)": ["ES", 8]},
{"Goiás (GO)": ["GO", 9]},
{"Maranhão (MA)": ["MA", 10]},
{"Mato Grosso (MT)": ["MT", 11]},
{"Piauí (PI)": ["PI", 18]},
{"Rio de Janeiro (RJ)": ["RJ", 19]},
{"Rio Grande do Sul (RS)": ["RS", 21]},
{"Santa Catarina (SC)": ["SC", 24]},
{"São Paulo (SP)": ["SP", 25]},
{"Sergipe (SE)": ["SE", 26]},
{"Tocantins (TO)": ["TO", 27]}]
Traditional implementation
for x in data:
if list(x.keys())[0] == "São Paulo (SP)":
# After 13 times
print(x[1])
# result: 25
Hashing implementation
import hashfunctions.hashtables as ht
table = ht.hash_table(data, 0)
# Just 1 time
sp = print(ht.get_data(table, 0, 'São Paulo (SP)')[0][1])
# result: 25
Handling
insert_tocatins = ht.insert_data(table, 0, [{"Tocantins (TO)": ["TO", 27]}])
remove_sergipe = ht.del_data(table, 0, "Sergipe (SE)")
update_rio = ht.update_data(
table, 0, "Rio de Jaineiro (RJ)", {"Rio de Janeiro": ["RJ", 100]
}
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
HashFunction-0.0.2.tar.gz
(5.7 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file HashFunction-0.0.2.tar.gz.
File metadata
- Download URL: HashFunction-0.0.2.tar.gz
- Upload date:
- Size: 5.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d9d3447e56a9c1c2aaf7d86c6ab0847ea98550732b35740fc87f0962c6711650
|
|
| MD5 |
36aac2e8ae9393dca9975b8d1c6d63e8
|
|
| BLAKE2b-256 |
73fe2b40e9fa71fc61cdb352ba2794ba4a53aa6a48543f63304d549c6956400a
|
File details
Details for the file HashFunction-0.0.2-py3-none-any.whl.
File metadata
- Download URL: HashFunction-0.0.2-py3-none-any.whl
- Upload date:
- Size: 6.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f49eea9796c751cfdab6791a9fba175259c19bd021fe91b903b4e7228c6b69a3
|
|
| MD5 |
310b16e2d4cab49f1ab6c05b3ce176ac
|
|
| BLAKE2b-256 |
73cf7bd72138ae2d6aa5e7aa87a2f441007cd844af3a36d66457f2ec2255328e
|