目录
字符串哈希
我们定义一个把字符串映射到整数的函数 f,这个 f 称为是 Hash 函数
我们希望这个函数 f 可以方便地帮我们判断两个字符串是否相等
注意哈希冲突!
将 Hash 函数值一样但原字符串不一样的现象称为哈希冲突。
例题
//>>>Qiansui
#include<map>
#include<set>
#include<list>
#include<stack>
#include<cmath>
#include<queue>
#include<deque>
#include<cstdio>
#include<string>
#include<vector>
#include<utility>
#include<iomanip>
#include<cstring>
#include<cstdlib>
#include<iostream>
#include<algorithm>
#include<functional>
#define ll long long
#define ull unsigned long long
#define mem(x,y) memset(x,y,sizeof(x))
#define debug(x) cout << #x << " = " << x << endl
#define debug2(x,y) cout << #x << " = " << x << " " << #y << " = "<< y << endl
//#define int long long
inline ll read()
{
ll x=0,f=1;char ch=getchar();
while (ch<'0'||ch>'9'){if (ch=='-') f=-1;ch=getchar();}
while (ch>='0'&&ch<='9'){x=(x<<1)+(x<<3)+ch-48;ch=getchar();}
return x*f;
}
using namespace std;
typedef pair<int,int> pii;
typedef pair<ll,ll> pll;
typedef pair<ull,ull> pull;
typedef pair<double,double> pdd;
/*
字符串哈希
这里使用进制哈希
*/
const int maxm=1e4+5,inf=0x3f3f3f3f,mod=998244353;
int n;
ull a[maxm];
set<ull> q;
string ss;
ull stringhash(string s){
ull p=131,ans=0;
for(auto a:s){
ans=ans*p+a;
}
return ans;
}
void solve(){
cin>>n;
for(int i=0;i<n;++i){
cin>>ss;
q.insert(stringhash(ss));
}
cout<<q.size()<<'\n';
return ;
}
signed main(){
ios::sync_with_stdio(false),cin.tie(0),cout.tie(0);
int _=1;
// cin>>_;
while(_--){
solve();
}
return 0;
}
标签:ch,long,哈希,ans,字符串,include
From: https://www.cnblogs.com/Qiansui/p/17519504.html