home *** CD-ROM | disk | FTP | other *** search
/ GEMini Atari / GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso / zip / gnu / gperf.lzh / GPERF / HASH-TAB.H < prev    next >
C/C++ Source or Header  |  1993-07-30  |  1KB  |  39 lines

  1. /* This may look like C code, but it is really -*- C++ -*- */
  2.  
  3. /* Hash table used to check for duplicate keyword entries.
  4.  
  5.    Copyright (C) 1989 Free Software Foundation, Inc.
  6.    written by Douglas C. Schmidt (schmidt@ics.uci.edu)
  7.  
  8. This file is part of GNU GPERF.
  9.  
  10. GNU GPERF is free software; you can redistribute it and/or modify
  11. it under the terms of the GNU General Public License as published by
  12. the Free Software Foundation; either version 1, or (at your option)
  13. any later version.
  14.  
  15. GNU GPERF is distributed in the hope that it will be useful,
  16. but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18. GNU General Public License for more details.
  19.  
  20. You should have received a copy of the GNU General Public License
  21. along with GNU GPERF; see the file COPYING.  If not, write to
  22. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  23.  
  24. #pragma once
  25. #include "list-node.h"
  26.  
  27. class Hash_Table 
  28. {
  29. private:
  30.   List_Node     **table;      /* Vector of pointers to linked lists of List_Node's. */
  31.   int             size;       /* Size of the vector. */
  32.   int             collisions; /* Find out how well our double hashing is working! */
  33.  
  34. public:
  35.                   Hash_Table (List_Node **t, int s);
  36.                  ~Hash_Table (void);
  37.   List_Node      *operator () (List_Node *item, int ignore_length);
  38. };
  39.