摘要:
#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; 阅读全文
摘要:
#include <stdio.h> #define MAXTABLESIZE 100000 /* 允许开辟的最大散列表长度 */ typedef int ElementType; /* 关键词类型用整型 */ typedef int Index; /* 散列地址类型 */ typedef Inde 阅读全文
摘要:
今天写了建模分析的报告。 阅读全文