Skip to content

Commit b687ab1

Browse files
authored
Update README.markdown
Boyer-Moore path is wrong.
1 parent 92a9add commit b687ab1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.markdown

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ If you're new to algorithms and data structures, here are a few good ones to sta
3333
- [Insertion Sort](Insertion%20Sort/)
3434
- [Binary Search](Binary%20Search/) and [Binary Search Tree](Binary%20Search%20Tree/)
3535
- [Merge Sort](Merge%20Sort/)
36-
- [Boyer-Moore string search](Boyer-Moore/)
36+
- [Boyer-Moore string search](Boyer-Moore-Horspool/)
3737

3838
## The algorithms
3939

@@ -51,7 +51,7 @@ If you're new to algorithms and data structures, here are a few good ones to sta
5151
### String Search
5252

5353
- [Brute-Force String Search](Brute-Force%20String%20Search/). A naive method.
54-
- [Boyer-Moore](Boyer-Moore/). A fast method to search for substrings. It skips ahead based on a look-up table, to avoid looking at every character in the text.
54+
- [Boyer-Moore](Boyer-Moore-Horspool/). A fast method to search for substrings. It skips ahead based on a look-up table, to avoid looking at every character in the text.
5555
- [Knuth-Morris-Pratt](Knuth-Morris-Pratt/). A linear-time string algorithm that returns indexes of all occurrencies of a given pattern.
5656
- [Rabin-Karp](Rabin-Karp/) Faster search by using hashing.
5757
- [Longest Common Subsequence](Longest%20Common%20Subsequence/). Find the longest sequence of characters that appear in the same order in both strings.

0 commit comments

Comments
 (0)