摘要:
#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 @ 2021-12-02 19:44
Lindseyyip
阅读(121)
评论(0)
推荐(0)
摘要:
#include <stdio.h> #define MAXTABLESIZE 100000 /* 允许开辟的最大散列表长度 */ typedef int ElementType; /* 关键词类型用整型 */ typedef int Index; /* 散列地址类型 */ typedef Inde 阅读全文
posted @ 2021-12-02 19:43
Lindseyyip
阅读(157)
评论(0)
推荐(0)
摘要:
今天写了建模分析的报告。 阅读全文
posted @ 2021-12-02 19:41
Lindseyyip
阅读(16)
评论(0)
推荐(0)
浙公网安备 33010602011771号