Skip to content

Commit 6ee39fe

Browse files
typo fix
1 parent 88e76db commit 6ee39fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Ordered Array/README.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,6 @@ The big difference with a regular binary search is that this doesn't return `nil
110110

111111
Note that using binary search doesn't change the worst-case running time complexity of `insert()`. The binary search itself takes only **O(log n)** time, but inserting a new object in the middle of an array still involves shifting all remaining elements in memory. So overall, the time complexity is still **O(n)**. But in practice this new version definitely is a lot faster, especially on large arrays.
112112

113-
A more complete and production ready [SortedArray](https://github.com/ole/SortedArray) is avalible from [Ole Begemann](https://github.com/ole). The [accompanying article](https://oleb.net/blog/2017/02/sorted-array/) explains to advantages and tradeoffs.
113+
A more complete and production ready [SortedArray](https://github.com/ole/SortedArray) is avalible from [Ole Begemann](https://github.com/ole). The [accompanying article](https://oleb.net/blog/2017/02/sorted-array/) explains the advantages and tradeoffs.
114114

115115
*Written for Swift Algorithm Club by Matthijs Hollemans*

0 commit comments

Comments
 (0)