标签:一个 超过 ring scan include 思路 支持 puts false
图书管理是一件十分繁杂的工作,在一个图书馆中每天都会有许多新书加入。为了更方便的管理图书(以便于帮助想要借书的客人快速查找他们是否有他们所需要的书),我们需要设计一个图书查找系统。
该系统需要支持 2 种操作:
add(s) 表示新加入一本书名为 s 的图书。
find(s) 表示查询是否存在一本书名为 s 的图书。
第一行包括一个正整数 ,表示操作数。 以下 行,每行给出 2 种操作中的某一个指令条,指令格式为:
add s
find s
在书名 s 与指令(add,find)之间有一个隔开,我们保证所有书名的长度都不超过 。可以假设读入数据是准确无误的。
对于每个 find(s) 指令,我们必须对应的输出一行 yes 或 no,表示当前所查询的书是否存在于图书馆内。
注意:一开始时图书馆内是没有一本图书的。并且,对于相同字母不同大小写的书名,我们认为它们是不同的。
4
add Inside C#
find Effective Java
add Effective Java
find Effective Java
no
yes
n <= 30000。
使用字符串产生两个哈希值,一个哈希值决定链表的头,另一个哈希值决定在某个链表头的后面的某个位置。
#include <cstdio>
#include <cstring>
#include <cmath>
int n;
char a[10], b[209];
int bs = 37, h1 = 90001, h2 = 90007;
int head[90001], nxt[30005], ver[30005], ht;
int res1, res2, len;
bool find(int x, int y) {
for (int i = head[x]; i; i = nxt[i]) {
if (ver[i] == y) return true;
}
return false;
}
void add(int x, int y) {
if (!find(x, y)) {
nxt[++ht] = head[x];
ver[ht] = y;
head[x] = ht;
}
}
int main() {
// 产生哈希表的两个数
// int cnt = 0;
// for (int i = 90001; cnt < 2; i += 2) {
// bool flag = false;
// for (int j = 3; j <= sqrt(i); ++j) {
// if (i % j == 0) flag = true;
// }
// if (!flag) {
// printf("%d\n", i);
// cnt++;
// }
// }
scanf("%d", &n);
for (int i = 1; i <= n; ++i) {
scanf("%s", a);
gets(b + 1);
len = strlen(b + 1);
res1 = 0, res2 = 0;
for (int i = 1; i <= len; ++i) {
res1 = ((long long)res1 * bs % 90001 + b[i]) % 90001;
res2 = ((long long)res2 * bs % 90007 + b[i]) % 90007;
}
if (strcmp(a, "add") == 0) {
add(res1, res2);
} else {
if (find(res1, res2)) puts("yes");
else puts("no");
}
}
return 0;
}
标签:一个 超过 ring scan include 思路 支持 puts false
原文地址:https://www.cnblogs.com/liuzz-20180701/p/11484283.html