fork(1) download
  1. #include <stdio.h>
  2.  
  3. typedef int (*hash_function)(void*,int);
  4. typedef int (*cmp_function)(void*,void*);
  5.  
  6. typedef struct _hasht_ hasht, *hash_table;
  7. typedef struct _node_ TNode, *TLDI;
  8.  
  9. struct _node_ {
  10. void *info;
  11. struct _node_ *pre, *urm;
  12. };
  13.  
  14. struct _hasht_{
  15. int maxElemNumber;
  16. hash_function hf;
  17. TLDI* key_array;
  18. };
  19.  
  20. int main(void) {
  21. // your code goes here
  22. return 0;
  23. }
  24.  
Success #stdin #stdout 0s 5456KB
stdin
Standard input is empty
stdout
Standard output is empty