码迷,mamicode.com
首页 > 其他好文 > 详细

hash

时间:2019-08-15 11:00:07      阅读:62      评论:0      收藏:0      [点我收藏+]

标签:ash   scanf   %s   signed   cpp   type   i+1   for   int   

typedef unsigned long long ull;
ull xp[maxn],hash1[maxn];

void init()
{
    xp[0]=1;
    for (int i=1; i<=maxn; i++)
    {
        xp[i]=xp[i-1]*175;
    }
}

ull get_hash(int i,int l) //以i开始长度为l的字串
{
    return hash1[i]-hash1[i+l]*xp[l];
}

scanf("%s",str);
int len=strlen(str);
for (int i=len-1; i>=0; i--)
{
    hash1[i]=hash1[i+1]*175+str[i]-‘a‘+1;
}

  

hash

标签:ash   scanf   %s   signed   cpp   type   i+1   for   int   

原文地址:https://www.cnblogs.com/Accpted/p/11356476.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!