Skip to content

Commit

Permalink
README: fix broken markdown link format
Browse files Browse the repository at this point in the history
  • Loading branch information
StefanKarpinski committed Feb 26, 2014
1 parent a5b9490 commit b4c14a3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@

[![Build Status](https://travis-ci.org/StefanKarpinski/SortingAlgorithms.jl.png)](https://travis-ci.org/StefanKarpinski/SortingAlgorithms.jl)

The SortingAlgorithms package provides three sorting algorithms that can be used with Julia's [standard sorting APIs](http://docs.julialang.org/en/latest/stdlib/sort/):
The SortingAlgorithms package provides three sorting algorithms that can be used with Julia's [standard sorting API](http://docs.julialang.org/en/latest/stdlib/sort/):

- [HeapSort] – an unstable, general purpose, in-place, O(n log n) comparison sort that works by heapify an array and repeatedly taking the maximal element from the heap.
- [TimSort] – a stable, general purpose, hybrid, O(n log n) comparison sort that adapts to different common patterns of partially ordered input data.
- [RadixSort] – a stable, special case, in-place, O(n) non-comparison sort that works by sorting data with fixed size, one digit at a time.

[HeapSort] http://en.wikipedia.org/wiki/Heapsort
[TimSort] http://en.wikipedia.org/wiki/Timsort
[RadixSort] http://en.wikipedia.org/wiki/Radix_sort
[HeapSort]: http://en.wikipedia.org/wiki/Heapsort
[TimSort]: http://en.wikipedia.org/wiki/Timsort
[RadixSort]: http://en.wikipedia.org/wiki/Radix_sort

## Usage

Expand Down

0 comments on commit b4c14a3

Please sign in to comment.