Skip to content

Commit d74f242

Browse files
aladin002dzappgurueugithub-actions
authored
Rabin Karp Search Algorithm (TheAlgorithms#1545)
* Search: Rabin-Karp algorithm * Prettier Style * Search: Rabin-Karp adding reference * Search: Rabin-Karp styling and remove unecessary logging * Search: Rabin-Karp review notes * Simplify return * Updated Documentation in README.md --------- Co-authored-by: Lars Müller <[email protected]> Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com>
1 parent 889d9c3 commit d74f242

File tree

3 files changed

+95
-0
lines changed

3 files changed

+95
-0
lines changed

DIRECTORY.md

+1
Original file line numberDiff line numberDiff line change
@@ -311,6 +311,7 @@
311311
* [LinearSearch](Search/LinearSearch.js)
312312
* [Minesweeper](Search/Minesweeper.js)
313313
* [QuickSelectSearch](Search/QuickSelectSearch.js)
314+
* [RabinKarp](Search/RabinKarp.js)
314315
* [SlidingWindow](Search/SlidingWindow.js)
315316
* [StringSearch](Search/StringSearch.js)
316317
* [TernarySearch](Search/TernarySearch.js)

Search/RabinKarp.js

+64
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
/*
2+
* Implements the Rabin-Karp algorithm for pattern searching.
3+
*
4+
* The Rabin-Karp algorithm is a string searching algorithm that uses hashing to find patterns in strings.
5+
* It is faster than naive string matching algorithms because it avoids comparing every character in the text.
6+
*
7+
* This implementation uses a rolling hash function to efficiently compute the hash values of substrings.
8+
* It also uses a modulo operator to reduce the size of the hash values, which helps to prevent hash collisions.
9+
*
10+
* The algorithm returns an array of indices where the pattern is found in the text. If the pattern is not
11+
* found, the algorithm returns an empty array.
12+
*
13+
* [Reference](https://en.wikipedia.org/wiki/Rabin%E2%80%93Karp_algorithm)
14+
*/
15+
16+
const BASE = 256 // The number of characters in the alphabet
17+
const MOD = 997 // A prime number used for the hash function
18+
19+
function rabinKarpSearch(text, pattern) {
20+
const patternLength = pattern.length
21+
const textLength = text.length
22+
const hashPattern = hash(pattern, patternLength)
23+
const hashText = []
24+
const indices = []
25+
26+
// Calculate the hash of the first substring in the text
27+
hashText[0] = hash(text, patternLength)
28+
29+
// Precompute BASE^(patternLength-1) % MOD
30+
const basePow = Math.pow(BASE, patternLength - 1) % MOD
31+
32+
for (let i = 1; i <= textLength - patternLength + 1; i++) {
33+
// Update the rolling hash by removing the first character
34+
// and adding the next character in the text
35+
hashText[i] =
36+
(BASE * (hashText[i - 1] - text.charCodeAt(i - 1) * basePow) +
37+
text.charCodeAt(i + patternLength - 1)) %
38+
MOD
39+
40+
// In case of hash collision, check character by character
41+
if (hashText[i] < 0) {
42+
hashText[i] += MOD
43+
}
44+
45+
// Check if the hashes match and perform a character-wise comparison
46+
if (hashText[i] === hashPattern) {
47+
if (text.substring(i, i + patternLength) === pattern) {
48+
indices.push(i) // Store the index where the pattern is found
49+
}
50+
}
51+
}
52+
53+
return indices
54+
}
55+
56+
function hash(str, length) {
57+
let hashValue = 0
58+
for (let i = 0; i < length; i++) {
59+
hashValue = (hashValue * BASE + str.charCodeAt(i)) % MOD
60+
}
61+
return hashValue
62+
}
63+
64+
export { rabinKarpSearch }

Search/test/RabinKarp.test.js

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
import { rabinKarpSearch } from '../RabinKarp'
2+
3+
describe('Rabin-Karp Search', function () {
4+
it('should find the pattern in the text', function () {
5+
const text = 'ABABDABACDABABCABAB'
6+
const pattern = 'DAB'
7+
const expected = [4, 9]
8+
9+
const result = rabinKarpSearch(text, pattern)
10+
expect(result).to.deep.equal(expected)
11+
})
12+
13+
it('should handle multiple occurrences of the pattern', function () {
14+
const text = 'ABABABABABAB'
15+
const pattern = 'ABAB'
16+
const expected = [2, 4, 6, 8]
17+
18+
const result = rabinKarpSearch(text, pattern)
19+
expect(result).to.deep.equal(expected)
20+
})
21+
22+
it('should handle pattern not found', function () {
23+
const text = 'ABCD'
24+
const pattern = 'XYZ'
25+
const expected = []
26+
27+
const result = rabinKarpSearch(text, pattern)
28+
expect(result).to.deep.equal(expected)
29+
})
30+
})

0 commit comments

Comments
 (0)