You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: Rabin-Karp/README.markdown
+5-5
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Rabin-Karp string search algorithm
2
2
3
-
The Rabin-Karp string search alogrithm is used to search text for a pattern.
3
+
The Rabin-Karp string search algorithm is used to search text for a pattern.
4
4
5
5
A practical application of the algorithm is detecting plagiarism. Given source material, the algorithm can rapidly search through a paper for instances of sentences from the source material, ignoring details such as case and punctuation. Because of the abundance of the sought strings, single-string searching algorithms are impractical.
6
6
@@ -12,10 +12,10 @@ at a time (e.g. "he ") and subtracts out the previous hash from the "T".
12
12
13
13
## Algorithm
14
14
15
-
The Rabin-Karp alogrithm uses a sliding window the size of the search pattern. It starts by hashing the search pattern, then
15
+
The Rabin-Karp algorithm uses a sliding window the size of the search pattern. It starts by hashing the search pattern, then
16
16
hashing the first x characters of the text string where x is the length of the search pattern. It then slides the window one character over and uses
17
17
the previous hash value to calculate the new hash faster. Only when it finds a hash that matches the hash of the search pattern will it compare
18
-
the two strings it see if they are the same (prevent a hash collision from producing a false positive)
18
+
the two strings it see if they are the same (to prevent a hash collision from producing a false positive).
19
19
20
20
## The code
21
21
@@ -37,7 +37,7 @@ public func search(text: String , pattern: String) -> Int {
37
37
let firstHash =hash(array: firstChars)
38
38
39
39
if (patternHash == firstHash) {
40
-
// Verify this was not a hash collison
40
+
// Verify this was not a hash collision
41
41
if firstChars == patternArray {
42
42
return0
43
43
}
@@ -76,4 +76,4 @@ This will return 13 since ump is in the 13 position of the zero based string.
0 commit comments