Skip to content

Commit fce3b33

Browse files
authored
Update README.md
1 parent f97f78d commit fce3b33

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -149,13 +149,13 @@ This is a collection of algorithms and data structures which I've implement over
149149

150150
## Search
151151
* Get index of value in array
152-
+ [Linear](src/com/jwetherell/algorithms/Sequences/LinearSearch.java)
153-
+ [Quickselect](src/com/jwetherell/algorithms/Sequences/QuickSelect.java)
154-
+ [Binary [sorted array input only]](src/com/jwetherell/algorithms/Sequences/BinarySearch.java)
155-
+ [Lower bound [sorted array input only]](src/com/jwetherell/algorithms/Sequences/LpperBound.java)
156-
+ [Upper bound [sorted array input only]](src/com/jwetherell/algorithms/Sequences/UpperBound.java)
152+
+ [Linear](src/com/jwetherell/algorithms/search/LinearSearch.java)
153+
+ [Quickselect](src/com/jwetherell/algorithms/search/QuickSelect.java)
154+
+ [Binary [sorted array input only]](src/com/jwetherell/algorithms/search/BinarySearch.java)
155+
+ [Lower bound [sorted array input only]](src/com/jwetherell/algorithms/search/LpperBound.java)
156+
+ [Upper bound [sorted array input only]](src/com/jwetherell/algorithms/search/UpperBound.java)
157157
+ Optimized binary (binary until a threashold then linear) [sorted array input only]
158-
+ [Interpolation [sorted array input only]](src/com/jwetherell/algorithms/Sequences/InterpolationSearch.java)
158+
+ [Interpolation [sorted array input only]](src/com/jwetherell/algorithms/search/InterpolationSearch.java)
159159

160160
## Sequences
161161
* [Find longest common subsequence (dynamic programming)](src/com/jwetherell/algorithms/sequence/LongestCommonSubsequence.java)

0 commit comments

Comments
 (0)