Skip to content

Commit e0ebe94

Browse files
committed
Update references
1 parent 8a63108 commit e0ebe94

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/SortingAlgorithms.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,8 @@ Characteristics:
7171
- *`O(n log n)` garuanteed runtime*.
7272
7373
## References
74-
- https://www.reddit.com/r/compsci/comments/qc95r7/merge_sort_with_osqrtn_auxiliary_memory/
75-
(Describes the basic idea, but uses another block reordering scheme.)
74+
- https://link.springer.com/chapter/10.1007/BFb0016253
75+
- https://max-arbuzov.blogspot.com/2021/10/merge-sort-with-osqrtn-auxiliary-memory.html
7676
"""
7777
const PagedMergeSort = PagedMergeSortAlg()
7878

@@ -90,8 +90,8 @@ Characteristics:
9090
- *`O(n log n)` garuanteed runtime*.
9191
9292
## References
93-
- https://www.reddit.com/r/compsci/comments/qc95r7/merge_sort_with_osqrtn_auxiliary_memory/
94-
(Describes the basic idea, but uses another block reordering scheme.)
93+
- https://link.springer.com/chapter/10.1007/BFb0016253
94+
- https://max-arbuzov.blogspot.com/2021/10/merge-sort-with-osqrtn-auxiliary-memory.html
9595
- https://en.wikipedia.org/wiki/Merge_sort#Merge_sort_with_parallel_recursion
9696
"""
9797
const ThreadedPagedMergeSort = ThreadedPagedMergeSortAlg()

0 commit comments

Comments
 (0)