home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
GEMini Atari
/
GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso
/
files
/
gnu
/
g__lib
/
vhset.ccp
< prev
next >
Wrap
Text File
|
1993-07-23
|
6KB
|
265 lines
// This may look like C code, but it is really -*- C++ -*-
/*
Copyright (C) 1988 Free Software Foundation
written by Doug Lea (dl@rocky.oswego.edu)
This file is part of GNU CC.
GNU CC is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY. No author or distributor
accepts responsibility to anyone for the consequences of using it
or for whether it serves any particular purpose or works at all,
unless he says so in writing. Refer to the GNU CC General Public
License for full details.
Everyone is granted permission to copy, modify and redistribute
GNU CC, but only under the conditions described in the
GNU CC General Public License. A copy of this license is
supposed to have been given to you along with GNU CC so you
can know your rights and responsibilities. It should be in a
file named COPYING. Among other things, the copyright notice
and this notice must be preserved on all copies.
*/
#include "<T>.VHSet.h"
/* codes for status fields */
#define EMPTYCELL 0
#define VALIDCELL 1
#define DELETEDCELL 2
<T>VHSet::<T>VHSet(int sz = DEFAULT_INITIAL_CAPACITY)
{
tab = new <T>[size = sz];
status = new char[size];
for (int i = 0; i < size; ++i) status[i] = EMPTYCELL;
count = 0;
}
<T>VHSet::<T>VHSet(<T>VHSet& a)
{
tab = new <T>[size = a.size];
status = new char[size];
for (int i = 0; i < size; ++i) status[i] = EMPTYCELL;
count = 0;
for (Pix p = a.first(); p; a.next(p)) add(a(p));
}
/*
* hashing method: double hash based on high bits of hash fct,
* followed by linear probe. Can't do too much better if table
* sizes not constrained to be prime.
*/
static inline doublehashinc(unsigned int h, int s)
{
return ((h / s) % s) >? 1;
}
Pix <T>VHSet::seek(<T&> key)
{
unsigned int hashval = <T>HASH(key);
int h = hashval % size;
for (int i = 0; i <= size; ++i)
{
if (status[h] == EMPTYCELL)
return 0;
else if (status[h] == VALIDCELL && <T>EQ(key, tab[h]))
return Pix(&tab[h]);
if (i == 0)
h = (h + doublehashinc(hashval, size)) % size;
else if (++h >= size)
h -= size;
}
return 0;
}
Pix <T>VHSet::add(<T&> item)
{
if (size <= count + 1)
resize();
int bestspot = -1;
unsigned int hashval = <T>HASH(item);
int h = hashval % size;
for (int i = 0; i <= size; ++i)
{
if (status[h] == EMPTYCELL)
{
if (bestspot < 0) bestspot = h;
tab[bestspot] = item;
status[bestspot] = VALIDCELL;
++count;
return Pix(&tab[bestspot]);
}
else if (status[h] == DELETEDCELL)
{
if (bestspot < 0) bestspot = h;
}
else if (<T>EQ(tab[h],item))
return Pix(&tab[h]);
if (i == 0)
h = (h + doublehashinc(hashval, size)) % size;
else if (++h >= size)
h -= size;
}
tab[bestspot] = item;
status[bestspot] = VALIDCELL;
++count;
return Pix(&tab[bestspot]);
}
void <T>VHSet::del(<T&> key)
{
unsigned int hashval = <T>HASH(key);
int h = hashval % size;
for (int i = 0; i <= size; ++i)
{
if (status[h] == EMPTYCELL)
return;
else if (status[h] == VALIDCELL && <T>EQ(key, tab[h]))
{
status[h] = DELETEDCELL;
--count;
return;
}
if (i == 0)
h = (h + doublehashinc(hashval, size)) % size;
else if (++h >= size)
h -= size;
}
}
void <T>VHSet::clear()
{
for (int i = 0; i < size; ++i) status[i] = EMPTYCELL;
count = 0;
}
void <T>VHSet::resize(int newsize = 0)
{
if (newsize <= count)
{
newsize = DEFAULT_INITIAL_CAPACITY;
while (newsize <= count) newsize <<= 1;
}
<T>* oldtab = tab;
char* oldstatus = status;
int oldsize = size;
tab = new <T>[size = newsize];
status = new char[size];
for (int i = 0; i < size; ++i) status[i] = EMPTYCELL;
count = 0;
for (i = 0; i < oldsize; ++i) if (oldstatus[i] == VALIDCELL) add(oldtab[i]);
delete [oldsize] oldtab;
delete oldstatus;
}
Pix <T>VHSet::first()
{
for (int pos = 0; pos < size; ++pos)
if (status[pos] == VALIDCELL) return Pix(&tab[pos]);
return 0;
}
void <T>VHSet::next(Pix& i)
{
if (i == 0) return;
int pos = ((unsigned)i - (unsigned)tab) / sizeof(<T>) + 1;
for (; pos < size; ++pos)
if (status[pos] == VALIDCELL)
{
i = Pix(&tab[pos]);
return;
}
i = 0;
}
int <T>VHSet:: operator == (<T>VHSet& b)
{
if (count != b.count)
return 0;
else
{
for (int i = 0; i < size; ++i)
if (status[i] == VALIDCELL && b.seek(tab[i]) == 0)
return 0;
for (i = 0; i < b.size; ++i)
if (b.status[i] == VALIDCELL && seek(b.tab[i]) == 0)
return 0;
return 1;
}
}
int <T>VHSet::operator <= (<T>VHSet& b)
{
if (count > b.count)
return 0;
else
{
for (int i = 0; i < size; ++i)
if (status[i] == VALIDCELL && b.seek(tab[i]) == 0)
return 0;
return 1;
}
}
void <T>VHSet::operator |= (<T>VHSet& b)
{
if (&b == this || b.count == 0)
return;
for (int i = 0; i < b.size; ++i)
if (b.status[i] == VALIDCELL) add(b.tab[i]);
}
void <T>VHSet::operator &= (<T>VHSet& b)
{
if (&b == this || count == 0)
return;
for (int i = 0; i < size; ++i)
{
if (status[i] == VALIDCELL && b.seek(tab[i]) == 0)
{
status[i] = DELETEDCELL;
--count;
}
}
}
void <T>VHSet::operator -= (<T>VHSet& b)
{
for (int i = 0; i < size; ++i)
{
if (status[i] == VALIDCELL && b.seek(tab[i]) != 0)
{
status[i] = DELETEDCELL;
--count;
}
}
}
int <T>VHSet::OK()
{
int v = tab != 0;
v &= status != 0;
int n = 0;
for (int i = 0; i < size; ++i)
{
if (status[i] == VALIDCELL) ++n;
else if (status[i] != DELETEDCELL && status[i] != EMPTYCELL)
v = 0;
}
v &= n == count;
if (!v) error("invariant failure");
return v;
}