This commit is contained in:
Max do Val Machado 2021-05-18 10:29:31 -03:00
parent a5cf3e5932
commit 59ea9c7c08
1 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@ public class Hash {
this.m2 = m2; this.m2 = m2;
this.m = m1 + m2; this.m = m1 + m2;
this.tabela = new int [this.m]; this.tabela = new int [this.m];
for(int i = 0; i < m; i++){ for(int i = 0; i < m1; i++){
tabela[i] = NULO; tabela[i] = NULO;
} }
reserva = 0; reserva = 0;