字符串hash(4hash)模板

#include
#include
#include
#include
#include
#include
#include
typedef unsigned long long ull;
using namespace std;
const long long h1=998244353,h2=1000000007,h3=2147483647,h4=999971;
struct T{
	unsigned long long hh1,hh2,hh3,hh4;
}t[10000+10];
char s[3000];
ull hash1(char *s,int len){
	ull ans=0;
	for(int i=0;i


你可能感兴趣的:(字符串相关)