文件名称:简单哈希表应用
文件大小:2KB
文件格式:CPP
更新时间:2015-08-07 11:00:34
哈希表
int H1(char *key) { int temp[10]; long k,d=0,e; int c,f,g; while(*key) d+=*key++; d*=d; e=d; for(c=0;d!=0;c++) { d/=10; } g=c; for(f=c;f>=0;f--) { temp[--g]=e; e/=10; } k=(temp[c/2]*10+temp[c/2+1])%M; return k; }