摘要: #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; 阅读全文
posted @ 2023-12-14 15:06 不会JAVA的小袁 阅读(10) 评论(0) 推荐(0) 编辑
摘要: 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] 阅读全文
posted @ 2023-12-14 15:05 不会JAVA的小袁 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 今天把若依框架弄好了,能实现增删改查 阅读全文
posted @ 2023-12-14 15:03 不会JAVA的小袁 阅读(93) 评论(0) 推荐(0) 编辑