hashtable.h 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. /*************************************/
  2. /* Auteur : Rémi Synave */
  3. /* Date de création : 01/03/07 */
  4. /* Date de modification : 15/03/15 */
  5. /* Version : 0.4 */
  6. /*************************************/
  7. /***************************************************************************/
  8. /* This file is part of a2ri. */
  9. /* */
  10. /* a2ri is free software: you can redistribute it and/or modify it */
  11. /* under the terms of the GNU Lesser General Public License as published */
  12. /* by the Free Software Foundation, either version 3 of the License, or */
  13. /* (at your option) any later version. */
  14. /* */
  15. /* a2ri 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 Lesser General Public License for more details. */
  19. /* */
  20. /* You should have received a copy of the GNU Lesser General Public */
  21. /* License along with a2ri. */
  22. /* If not, see <http://www.gnu.org/licenses/>. */
  23. /***************************************************************************/
  24. #ifndef HASHTABLE__H
  25. #define HASHTABLE__H
  26. #include <stdio.h>
  27. #include <stdlib.h>
  28. #include <math.h>
  29. #include <string.h>
  30. #include "edge.h"
  31. #include "util.h"
  32. struct mycontainer
  33. {
  34. struct mycontainer *next;
  35. vf_edge *data;
  36. };
  37. typedef struct mycontainer container;
  38. typedef struct
  39. {
  40. int size_array;
  41. int count;
  42. container **list;
  43. } hashtable;
  44. typedef void (
  45. *ptf_foreach) (
  46. int,
  47. vf_edge *,
  48. void *);
  49. /**
  50. Création d'une table de hachage
  51. @param size taille de la table de hachage
  52. @return la nouvelles table de hachage
  53. **/
  54. hashtable *hashtable_new (
  55. int size);
  56. /**
  57. Destruction de la table de hachage avec libération de la mémoire
  58. @param table la table de hachage
  59. @return aucun;
  60. **/
  61. void hashtable_free (
  62. hashtable * table);
  63. /**
  64. TODO Ajouter le const sur l'arete qui est en parametre
  65. Ajout d'une arete dans la table de hachage
  66. @param table la table de hachage
  67. @param e l'arete a ajouter
  68. @return aucun
  69. **/
  70. void hashtable_add (
  71. hashtable * table,
  72. vf_edge * e);
  73. /**
  74. Recherche d'une arete dans la table de hachage
  75. @param ve1 premier sommet de l'arete
  76. @param ve2 second sommet de l'arete
  77. @return l'arete si elle se trouve dans la table de hachage, NULL sinon.
  78. **/
  79. vf_edge *hashtable_look_for (
  80. const hashtable * const table,
  81. int ve1,
  82. int ve2);
  83. /**
  84. Affichage d'une table de hachage
  85. @param table la table de hachage
  86. @return aucun
  87. **/
  88. void hashtable_display (
  89. const hashtable * const table);
  90. /**
  91. Retourne la taille de la table, le nombre d'éléments
  92. @param table la table de hachage
  93. @return aucun
  94. **/
  95. int hashtable_size (
  96. const hashtable * const table);
  97. /**
  98. Applique la fonction passé en paramètre à tous les éléments contenus dans la table
  99. @param table la table de hachage
  100. @param func la fonction à appliquer
  101. @param user_data un pointeur vers des données que l'on veut passé en paramètre à la fonction
  102. @return aucun
  103. **/
  104. void hashtable_foreach (
  105. hashtable * table,
  106. ptf_foreach func,
  107. void *user_data);
  108. #endif