Re: how to allow integer overflow for calculating hash code of a string?

Поиск
Список
Период
Сортировка
От Craig James
Тема Re: how to allow integer overflow for calculating hash code of a string?
Дата
Msg-id CAFwQ8rcdk68h5kC+77VdPqwPmju3KD1BTkm6Sh4_YYEzcBwcwA@mail.gmail.com
обсуждение исходный текст
Ответ на how to allow integer overflow for calculating hash code of a string?  (Haifeng Liu <liuhaifeng@live.com>)
Ответы Re: how to allow integer overflow for calculating hash code of a string?  (Haifeng Liu <liuhaifeng@live.com>)
Список 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 по дате отправления:

Предыдущее
От: Haifeng Liu
Дата:
Сообщение: how to allow integer overflow for calculating hash code of a string?
Следующее
От: Kasia Tuszynska
Дата:
Сообщение: Backup and Restore from 8.3.0 to 9.1.3