其他分享
首页 > 其他分享> > 模拟散列表(拉链法储存)

模拟散列表(拉链法储存)

作者:互联网

#include <iostream>
#include <algorithm>
#include <cstring>
using namespace std;
const int N=100003;
int h[N],e[N],ne[N],idx;
void insert(int x)
{
int k=(x%N+N)%N;
e[idx]=x;
ne[idx]=h[k];
h[k]=idx++;
}
bool find(int x)
{
int k=(x%N+N)%N;
for(int i=h[k];i!=-1;i=ne[i])
if(e[i]==x)
return true;
return false;
}
int main()
{
int n;
cin>>n;
memset(h,-1,sizeof h);
while(n--)
{
char op[2];
int x;
scanf("%s%d",op,&x);
if(*op=='I') insert(x);
else
{
if(find(x)) puts("Yes");
else puts("No");
}
}
return 0;
}

标签:储存,return,idx,拉链,int,ne,列表,include,op
来源: https://www.cnblogs.com/xiao--yang/p/16071112.html