Skip to content

Commit

Permalink
Merge pull request kodecocodes#654 from vbicer/patch-1
Browse files Browse the repository at this point in the history
Update README.markdown
  • Loading branch information
kelvinlauKL authored Oct 31, 2017
2 parents 92a9add + b687ab1 commit c742451
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ If you're new to algorithms and data structures, here are a few good ones to sta
- [Insertion Sort](Insertion%20Sort/)
- [Binary Search](Binary%20Search/) and [Binary Search Tree](Binary%20Search%20Tree/)
- [Merge Sort](Merge%20Sort/)
- [Boyer-Moore string search](Boyer-Moore/)
- [Boyer-Moore string search](Boyer-Moore-Horspool/)

## The algorithms

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

- [Brute-Force String Search](Brute-Force%20String%20Search/). A naive method.
- [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.
- [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.
- [Knuth-Morris-Pratt](Knuth-Morris-Pratt/). A linear-time string algorithm that returns indexes of all occurrencies of a given pattern.
- [Rabin-Karp](Rabin-Karp/) Faster search by using hashing.
- [Longest Common Subsequence](Longest%20Common%20Subsequence/). Find the longest sequence of characters that appear in the same order in both strings.
Expand Down

0 comments on commit c742451

Please sign in to comment.