File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -91,7 +91,7 @@ It is written by the same author, and published by the fine folks at objc.io.
91
91
Buying a copy of the book is not only a nice way to support this project, it also gets you something quite interesting to read.
92
92
Win-win!
93
93
94
- [ ![ Optimizing Collections (eBook)] ( OptimizingCollections.png )] [ OptimizingCollections ]
94
+ [ ![ Optimizing Collections (eBook)] ( docs/images/ OptimizingCollections.png)] [ OptimizingCollections ]
95
95
96
96
[ OptimizingCollections ] : https://www.objc.io/books/optimizing-collections/
97
97
@@ -157,7 +157,7 @@ For example, using a single array to hold a sorted list of items has quite horri
157
157
complexity when there are many elements. However, up to a certain maximum size, a simple array is in fact
158
158
the most efficient way to represent a sorted list.
159
159
160
- ![ Typical benchmark results for sorted collections] ( http://lorentey.github.io/BTree /images/Sorted%20Collections%20in%20Swift.png)
160
+ ![ Typical benchmark results for sorted collections] ( docs /images/Sorted%20Collections%20in%20Swift.png)
161
161
162
162
The benchmark above demonstrates this really well: insertion of * n* elements into a sorted array
163
163
costs O(n^2) when there are many items, but for many reasonably sized data sets, it is still much faster
You can’t perform that action at this time.
0 commit comments