Re: how to allow integer overflow for calculating hash code of a string? - Mailing list pgsql-admin

From Craig James
Subject Re: how to allow integer overflow for calculating hash code of a string?
Date
Msg-id CAFwQ8rcdk68h5kC+77VdPqwPmju3KD1BTkm6Sh4_YYEzcBwcwA@mail.gmail.com
Whole thread Raw
In response to how to allow integer overflow for calculating hash code of a string?  (Haifeng Liu <liuhaifeng@live.com>)
Responses Re: how to allow integer overflow for calculating hash code of a string?  (Haifeng Liu <liuhaifeng@live.com>)
List pgsql-admin


On Thu, Sep 20, 2012 at 1:55 AM, Haifeng Liu <liuhaifeng@live.com> wrote:
I want to write a hash function which acts as String.hashCode() in java: hash = hash * 31 + s.charAt(i)... but I got integer out of range error. How can I avoid this? I saw java do not care overflow of int, it just make the result negative.


Use the bitwise AND operator to mask the hash value with 0x3FFFFFF before each iteration:

  hash = (hash & 67108863) * 31 + s.charAt(i);

Craig

pgsql-admin by date:

Previous
From: Haifeng Liu
Date:
Subject: how to allow integer overflow for calculating hash code of a string?
Next
From: Kasia Tuszynska
Date:
Subject: Backup and Restore from 8.3.0 to 9.1.3