-
Notifications
You must be signed in to change notification settings - Fork 0
/
open_addr_hash.py
64 lines (52 loc) · 2.84 KB
/
open_addr_hash.py
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
class Open_Addressing_Hash():
def __init__(self, m, hf, M, c1, c2):
self.m = m # número de slots
self.hf = hf # 1: linear probing; 2: quadratic probing; 3: double hashing
self.table = [[None] for _ in range(m)] # chaves armazenadas direto na tabela
self.c1, self.c2 = c1, c2 # constantes auxiliares (quadratic); se não for quadratic: None
self.M = M # m auxiliar (double hashing); se não for double: None
def hash_function(self, hf, key, i):
if hf == 1: # linear probing
return (key+i) % self.m
elif hf == 2: # quadratic probing
return (key + self.c1*i + self.c2*(i**2)) % self.m
elif hf == 3: # double hashing
h1 = key % self.m
h2 = 1 + (key % self.M)
return ((h1) + i*(h2)) % self.m
else:
raise ValueError(f"{hf} não é um mapeamento válido!")
def insert(self, key):
i = 0
while i<self.m: # enquanto i não exceder o número de slots:
index = self.hash_function(self.hf, key, i) # calcular o slot h(key)
if self.table[index][0] == None:
self.table[index][0] = key # inserir caso o slot esteja vazio
return True
i+=1
raise OverflowError("Não foi possível inserir essa chave: tabela cheia!")
def search(self, key):
i = 0
index = self.hash_function(self.hf, key, i) # calcular o slot h(key)
while (i<self.m) and (self.table[index][0] is not None): # enquanto i não exceder o número de slots E o slot não for vazio:
if self.table[index][0] == key:
# encontrou o slot com a chave
print(f"Chave {key} encontrada! O número de acessos nessa busca foi {i+1}")
return i+1
i+=1
index = self.hash_function(self.hf, key, i) # calcular o pŕoximo slot h(key)
# não encontrou nenhum slot com essa chave
print(f"Chave {key} não encontrada! O número de acessos nessa busca foi {i+1}")
return i+1
def delete(self, key):
i = 0
index = self.hash_function(self.hf, key, i) # calcular o slot h(key)
while (i<self.m) and (self.table[index][0] is not None): # enquanto i não exceder o número de slots E o slot não for vazio:
if self.table[index][0] == key:
# encontrou o slot com a chave: slot = None
self.table[index][0] = None
return True
i+=1
index = self.hash_function(self.hf, key, i) # calcular o pŕoximo slot h(key)
# não encontrou nenhum slot com essa chave
raise KeyError(f"A chave {key} não está na tabela!")