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