开放地址法,把h数组全部设置为3f,然后设定null为0x3f3f3f3f,find函数设定返回值t,如果h[t]==null,那么x在h中不存在,否则为存在
#include<iostream>
#include<cstring>
#include<string>
#define LEN 100003
#define null 0x3f3f3f3f
using namespace std;
int h[3* LEN ];
int find(int x){
int t=((x%LEN)+LEN)%LEN;
while(h[t]!=null&&h[t]!=x){
++t;
if(t==LEN){
t=0;
}
}
return t;
}
int main(){
int N;
cin>>N;
memset(h,0x3f,sizeof h);
while(N--){
string op;
int x;
cin>>op>>x;
if(op=="I"){
h[find(x)]=x;
}else if(op=="Q"){
if(h[find(x)]==null) puts("No");
else puts("Yes");
}
}
return 0;
}
拉链法
#include<iostream>
#define LEN 100003
#include<string>
#include<cstring>
//#define null 0x3f3f3f3f
using namespace std;
int h[LEN],e[LEN],ne[LEN],idx;
void insert(int x){
int t=((x%LEN)+LEN)%LEN;
e[idx]=x,ne[idx]=h[t],h[t]=idx++;
}
bool find(int x){
int t=((x%LEN)+LEN)%LEN;
for(int i=h[t];i!=-1;i=ne[i]){
if(e[i]==x){
return 1;
}
}
return 0;
}
int main(){
int N;
cin>>N;
memset(h,-1,sizeof h);
while(N--){
string op;
int x;
cin>>op>>x;
if(op=="I"){
insert(x);
}else if(op=="Q"){
if(!find(x)) puts("No");
else puts("Yes");
}
}
return 0;
}