hash.h
上传用户:zjbsled
上传日期:2007-01-08
资源大小:4k
文件大小:3k
开发平台:

C/C++

  1. /* +++Date last modified: 05-Jul-1997 */
  2. #ifndef HASH__H
  3. #define HASH__H
  4. #include <stddef.h>           /* For size_t     */
  5. /*
  6. ** A hash table consists of an array of these buckets.  Each bucket
  7. ** holds a copy of the key, a pointer to the data associated with the
  8. ** key, and a pointer to the next bucket that collided with this one,
  9. ** if there was one.
  10. */
  11. typedef struct bucket {
  12.     char *key;
  13.     void *data;
  14.     struct bucket *next;
  15. } bucket;
  16. /*
  17. ** This is what you actually declare an instance of to create a table.
  18. ** You then call 'construct_table' with the address of this structure,
  19. ** and a guess at the size of the table.  Note that more nodes than this
  20. ** can be inserted in the table, but performance degrades as this
  21. ** happens.  Performance should still be quite adequate until 2 or 3
  22. ** times as many nodes have been inserted as the table was created with.
  23. */
  24. typedef struct hash_table {
  25.     size_t size;
  26.     bucket **table;
  27. } hash_table;
  28. /*
  29. ** This is used to construct the table.  If it doesn't succeed, it sets
  30. ** the table's size to 0, and the pointer to the table to NULL.
  31. */
  32. hash_table *construct_table(hash_table *table,size_t size);
  33. /*
  34. ** Inserts a pointer to 'data' in the table, with a copy of 'key' as its
  35. ** key.  Note that this makes a copy of the key, but NOT of the
  36. ** associated data.
  37. */
  38. void *insert(char *key,void *data,struct hash_table *table);
  39. /*
  40. ** Returns a pointer to the data associated with a key.  If the key has
  41. ** not been inserted in the table, returns NULL.
  42. */
  43. void *lookup(char *key,struct hash_table *table);
  44. /*
  45. ** Deletes an entry from the table.  Returns a pointer to the data that
  46. ** was associated with the key so the calling code can dispose of it
  47. ** properly.
  48. */
  49. void *del(char *key,struct hash_table *table);
  50. /*
  51. ** Goes through a hash table and calls the function passed to it
  52. ** for each node that has been inserted.  The function is passed
  53. ** a pointer to the key, and a pointer to the data associated
  54. ** with it.
  55. */
  56. void enumerate(struct hash_table *table,void (*func)(char *,void *));
  57. /*
  58. ** Frees a hash table.  For each node that was inserted in the table,
  59. ** it calls the function whose address it was passed, with a pointer
  60. ** to the data that was in the table.  The function is expected to
  61. ** free the data.  Typical usage would be:
  62. ** free_table(&table, free);
  63. ** if the data placed in the table was dynamically allocated, or:
  64. ** free_table(&table, NULL);
  65. ** if not.  ( If the parameter passed is NULL, it knows not to call
  66. ** any function with the data. )
  67. */
  68. void free_table(hash_table *table, void (*func)(void *));
  69. #endif /* HASH__H */