快速实现Rolling hash

时间:2009-04-02 21:56:52

标签: c++ hash

我需要一个Rolling hash来搜索文件中的模式。 (我正在尝试使用Rabin-Karp string search algorithm)。

我理解良好的 Hash 如何运作以及良好的 Rolling Hash 如何运作但我无法弄清楚如何有效地实现鸿沟(或反向乘法)。我也读过rsync使用 adler32 的滚动版本,但这看起来不像是一个随机的哈希。

理想情况下,如果你能指出我的优化C / C ++实现会很棒,但是正确方向的任何指针都会有所帮助。

3 个答案:

答案 0 :(得分:15)

Cipher的“主要基础”理念应该运作良好 - 尽管他发布的解决方案看起来有点粗略。

我认为在这种方法中不需要反向乘法。 这是我的解决方案:

假设我们当前已经散列的字符串是“abc”,我们想要附加“d”并删除“a”。

就像Cipher一样,我的基本哈希算法将是:

unsigned hash(const string& s)
{
    unsigned ret = 0;
    for (int i = 0; i < s.size(); i++)
    {
        ret *= PRIME_BASE; //shift over by one
        ret += s[i]; //add the current char
        ret %= PRIME_MOD; //don't overflow
    }
    return ret;
}

现在,要实现滑动:

hash1 = [0]*base^(n-1) + [1]*base^(n-2) + ... + [n-1]

我们想在最后添加一些内容并删除第一个值,所以

hash2 = [1]*base^(n-1) + [2]*base^(n-2) + ... + [n]

首先我们可以添加最后一个字母:

hash2 = (hash1 * PRIME_BASE) + newchar;
=> [0]*base^n + [1]*base^(n-1) + ... + [n-1]*base + [n]

然后简单地减去第一个字符:

hash2 -= firstchar * pow(base, n);
=> [1]*base^(n-1) + ... + [n]

重要提示:你必须小心溢出。您可以选择让它溢出unsigned int,但我认为它更容易发生碰撞(但也更快!)

这是我的实施:

#include <iostream>
#include <string>
using namespace std;

const unsigned PRIME_BASE = 257;
const unsigned PRIME_MOD = 1000000007;

unsigned hash(const string& s)
{
    long long ret = 0;
    for (int i = 0; i < s.size(); i++)
    {
        ret = ret*PRIME_BASE + s[i];
        ret %= PRIME_MOD; //don't overflow
    }
    return ret;
}

int rabin_karp(const string& needle, const string& haystack)
{
    //I'm using long longs to avoid overflow
    long long hash1 = hash(needle);
    long long hash2 = 0;

    //you could use exponentiation by squaring for extra speed
    long long power = 1;
    for (int i = 0; i < needle.size(); i++)
        power = (power * PRIME_BASE) % PRIME_MOD;

    for (int i = 0; i < haystack.size(); i++)
    {
        //add the last letter
        hash2 = hash2*PRIME_BASE + haystack[i];
        hash2 %= PRIME_MOD;

        //remove the first character, if needed
        if (i >= needle.size())
        {
            hash2 -= power * haystack[i-needle.size()] % PRIME_MOD;
            if (hash2 < 0) //negative can be made positive with mod
                hash2 += PRIME_MOD;
        }

        //match?
        if (i >= needle.size()-1 && hash1 == hash2)
            return i - (needle.size()-1);
    }

    return -1;
}

int main()
{
    cout << rabin_karp("waldo", "willy werther warhol wendy --> waldo <--") << endl;
}

答案 1 :(得分:4)

快速实施的一些指示:

  1. 避免模运算(C语言中的%)使用掩码n - 1,其中n是2 ^ k,包括哈希表查找的操作。是的,可以使用非素数模数生成良好的散列。
  2. 选择具有良好品质因数的乘数和指数,有关详细信息,请参阅this paper

答案 2 :(得分:0)

我曾经写过这篇文章。它用c#编写,但非常接近c,你只需要添加几个参数。这个应该工作,但我没有测试这个版本,我删除了几行忽略大小写或非单词字符的行。我希望这有帮助

private const int primeBase = 101;
//primeBase^2*[0]+primeBase^1*[1]+primeBase^0*[2]
//==
//primeBase*(primeBase*[0]+[1])+[2]
public static int primeRollingHash(String input, int start, int end)
{
    int acc = 0;
    for (int i = start; i <= end; i++)
    {
        char c = input[i];
        acc *= primeBase;
        acc += c;
    }
    return acc;
}

public static int primeRollingHash(String input)
{
    return primeRollingHash(input, 0, input.Length - 1);
}

public static int rollHashRight(int currentHashValue, String input, 
                                int start, int newEnd)
{
    if (newEnd == input.Length)
        return currentHashValue;
    int length = newEnd - start - 1;
    int multiplier = primeBase;
    char newChar = input[newEnd];
    int firstValue = input[start];
    if(length>0)
        firstValue *= length * primeBase;
    return (currentHashValue - firstValue) * multiplier + newChar;
}