mirror of
https://github.com/trekhleb/javascript-algorithms.git
synced 2025-12-08 19:06:00 +00:00
90 lines
2.2 KiB
JavaScript
90 lines
2.2 KiB
JavaScript
const DEFAULT_BASE = 37;
|
|
const DEFAULT_MODULUS = 101;
|
|
|
|
export default class PolynomialHash {
|
|
/**
|
|
* @param {number} [base] - Base number that is used to create the polynomial.
|
|
* @param {number} [modulus] - Modulus number that keeps the hash from overflowing.
|
|
*/
|
|
constructor({ base = DEFAULT_BASE, modulus = DEFAULT_MODULUS } = {}) {
|
|
this.base = base;
|
|
this.modulus = modulus;
|
|
}
|
|
|
|
/**
|
|
* Function that creates hash representation of the word.
|
|
*
|
|
* Time complexity: O(word.length).
|
|
*
|
|
* @param {string} word - String that needs to be hashed.
|
|
* @return {number}
|
|
*/
|
|
hash(word) {
|
|
const charCodes = Array.from(word).map((char) => this.charToNumber(char));
|
|
|
|
let hash = 0;
|
|
for (let charIndex = 0; charIndex < charCodes.length; charIndex += 1) {
|
|
hash *= this.base;
|
|
hash += charCodes[charIndex];
|
|
hash %= this.modulus;
|
|
}
|
|
|
|
return hash;
|
|
}
|
|
|
|
/**
|
|
* Function that creates hash representation of the word
|
|
* based on previous word (shifted by one character left) hash value.
|
|
*
|
|
* Recalculates the hash representation of a word so that it isn't
|
|
* necessary to traverse the whole word again.
|
|
*
|
|
* Time complexity: O(1).
|
|
*
|
|
* @param {number} prevHash
|
|
* @param {string} prevWord
|
|
* @param {string} newWord
|
|
* @return {number}
|
|
*/
|
|
roll(prevHash, prevWord, newWord) {
|
|
let hash = prevHash;
|
|
|
|
const prevValue = this.charToNumber(prevWord[0]);
|
|
const newValue = this.charToNumber(newWord[newWord.length - 1]);
|
|
|
|
let prevValueMultiplier = 1;
|
|
for (let i = 1; i < prevWord.length; i += 1) {
|
|
prevValueMultiplier *= this.base;
|
|
prevValueMultiplier %= this.modulus;
|
|
}
|
|
|
|
hash += this.modulus;
|
|
hash -= (prevValue * prevValueMultiplier) % this.modulus;
|
|
|
|
hash *= this.base;
|
|
hash += newValue;
|
|
hash %= this.modulus;
|
|
|
|
return hash;
|
|
}
|
|
|
|
/**
|
|
* Converts char to number.
|
|
*
|
|
* @param {string} char
|
|
* @return {number}
|
|
*/
|
|
charToNumber(char) {
|
|
let charCode = char.codePointAt(0);
|
|
|
|
// Check if character has surrogate pair.
|
|
const surrogate = char.codePointAt(1);
|
|
if (surrogate !== undefined) {
|
|
const surrogateShift = 2 ** 16;
|
|
charCode += surrogate * surrogateShift;
|
|
}
|
|
|
|
return charCode;
|
|
}
|
|
}
|