Skip to content

Commit 10abdbc

Browse files
authored
Update README.markdown
Updated the Z-algorithm link to the String Search section.
1 parent e5fb825 commit 10abdbc

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

README.markdown

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ If you're new to algorithms and data structures, here are a few good ones to sta
5050
- [k-th Largest Element](Kth Largest Element/). Find the *k*-th largest element in an array, such as the median.
5151
- [Selection Sampling](Selection Sampling/). Randomly choose a bunch of items from a collection.
5252
- [Union-Find](Union-Find/). Keeps track of disjoint sets and lets you quickly merge them.
53-
- [Z-Algorithm](Z-Algorithm/). Finds all instances of a pattern in a String, and returns the indexes of where the pattern starts within the String.
53+
5454

5555
### String Search
5656

@@ -59,6 +59,7 @@ If you're new to algorithms and data structures, here are a few good ones to sta
5959
- Knuth-Morris-Pratt
6060
- Rabin-Karp
6161
- [Longest Common Subsequence](Longest Common Subsequence/). Find the longest sequence of characters that appear in the same order in both strings.
62+
- [Z-Algorithm](Z-Algorithm/). Finds all instances of a pattern in a String, and returns the indexes of where the pattern starts within the String.
6263

6364
### Sorting
6465

0 commit comments

Comments
 (0)