#include #include #include #include "hashCh.h" // função de hash int Hash(KeyType k) { int h=0, c=0; while (*k && c++ < 10) h += *k++; return h % HASHSIZE; } // IMPLEMENTAÇÃO DAS RESTANTES FUNÇÕES...