You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Ken
22abc7086e
|
4 years ago | |
---|---|---|
.. | ||
Makefile.inc | 4 years ago | |
README | 4 years ago | |
extern.h | 4 years ago | |
hash.c | 4 years ago | |
hash.h | 4 years ago | |
hash_bigkey.c | 4 years ago | |
hash_buf.c | 4 years ago | |
hash_func.c | 4 years ago | |
hash_log2.c | 4 years ago | |
hash_page.c | 4 years ago | |
hsearch.c | 4 years ago | |
ndbm.c | 4 years ago | |
page.h | 4 years ago | |
search.h | 4 years ago | |
tags | 4 years ago |
README
# @(#)README 8.1 (Berkeley) 6/4/93
This package implements a superset of the hsearch and dbm/ndbm libraries.
Test Programs:
All test programs which need key/data pairs expect them entered
with key and data on separate lines
tcreat3.c
Takes
bucketsize (bsize),
fill factor (ffactor), and
initial number of elements (nelem).
Creates a hash table named hashtest containing the
keys/data pairs entered from standard in.
thash4.c
Takes
bucketsize (bsize),
fill factor (ffactor),
initial number of elements (nelem)
bytes of cache (ncached), and
file from which to read data (fname)
Creates a table from the key/data pairs on standard in and
then does a read of each key/data in fname
tdel.c
Takes
bucketsize (bsize), and
fill factor (ffactor).
file from which to read data (fname)
Reads each key/data pair from fname and deletes the
key from the hash table hashtest
tseq.c
Reads the key/data pairs in the file hashtest and writes them
to standard out.
trea