-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdispersion.h
59 lines (54 loc) · 1.19 KB
/
dispersion.h
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
class BD
{
private:
int M;
struct nodo
{
int clave, info;
struct nodo *siguiente;
nodo(int k, int i, struct nodo*n)
{
clave=k;
info=i;
siguiente=n;
};
};
struct nodo *z, **cabezas;
public:
BD(int tm)
{
int i;
M=tm;
z= new nodo(0, 0, NULL);
z->siguiente=z;
cabezas = new nodo *[M];
for(i=0; i<M; i++)
cabezas[i]=new nodo(0, 0, z);
}
~BD(void){;};
int dispersion(int v);
int buscar(int v);
void insertar(int v, int info);
};
int BD::dispersion(int v)
{
return v%M;
}
void BD::insertar(int v, int info)
{
struct nodo *x, *t;
t=cabezas[dispersion(v)];
z->clave=v;
while(v>t->siguiente->clave)
t=t->siguiente;
x=new nodo(v, info, t->siguiente);
t->siguiente=x;
}
int BD::buscar(int v)
{
struct nodo *t;
t=cabezas[dispersion(v)];
z->clave=v;
while(v>t->clave) t=t->siguiente;
return t->info;
}