摘要:
#include<stdio.h> int hash[1050],n; int find(int x){ int k=x%n; while(hash[k]!=0&&hash[k]!=x){ k++; if(k==n){ k=0; } } return k; } int main(){ int m; 阅读全文
摘要:
Position Find( HashTable H, ElementType Key ){ Position p0,p; int Cnum=0;//冲突数 p=p0=Hash(Key,H->TableSize); while(H->Cells[p].Info!=Empty&&H->Cells[p] 阅读全文
摘要:
今天把若依框架弄好了,能实现增删改查 阅读全文