Skip to content

Commit

Permalink
Remove extraneous indentation in README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
LilithHafner authored Dec 9, 2023
1 parent 9fd8e89 commit b79b166
Showing 1 changed file with 55 additions and 55 deletions.
110 changes: 55 additions & 55 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,67 +19,67 @@ The `SortingAlgorithms` package provides three sorting algorithms that can be us
## Usage

```jl
julia> using SortingAlgorithms
julia> using SortingAlgorithms

julia> words = map(chomp,[readlines(open("/usr/share/dict/words"))...])
235886-element Array{ASCIIString,1}:
"A"
"a"
"aa"
"zythum"
"Zyzomys"
"Zyzzogeton"
julia> words = map(chomp,[readlines(open("/usr/share/dict/words"))...])
235886-element Array{ASCIIString,1}:
"A"
"a"
"aa"
"zythum"
"Zyzomys"
"Zyzzogeton"

julia> sort!(words, alg=TimSort)
235886-element Array{ASCIIString,1}:
"A"
"Aani"
"Aaron"
"zymurgy"
"zythem"
"zythum"
julia> sort!(words, alg=TimSort)
235886-element Array{ASCIIString,1}:
"A"
"Aani"
"Aaron"
"zymurgy"
"zythem"
"zythum"

julia> sort!(words, alg=TimSort, by=length)
235886-element Array{ASCIIString,1}:
"A"
"B"
"C"
"scientificophilosophical"
"tetraiodophenolphthalein"
"thyroparathyroidectomize"
julia> sort!(words, alg=TimSort, by=length)
235886-element Array{ASCIIString,1}:
"A"
"B"
"C"
"scientificophilosophical"
"tetraiodophenolphthalein"
"thyroparathyroidectomize"

julia> sort!(words, alg=HeapSort)
235886-element Array{ASCIIString,1}:
"A"
"Aani"
"Aaron"
"zymurgy"
"zythem"
"zythum"
julia> sort!(words, alg=HeapSort)
235886-element Array{ASCIIString,1}:
"A"
"Aani"
"Aaron"
"zymurgy"
"zythem"
"zythum"

julia> sort!(words, alg=HeapSort, by=length)
235886-element Array{ASCIIString,1}:
"L"
"p"
"U"
"scientificophilosophical"
"tetraiodophenolphthalein"
"thyroparathyroidectomize"
julia> sort!(words, alg=HeapSort, by=length)
235886-element Array{ASCIIString,1}:
"L"
"p"
"U"
"scientificophilosophical"
"tetraiodophenolphthalein"
"thyroparathyroidectomize"

julia> sort!(randn(1000), alg=CombSort)
1000-element Array{Float64,1}:
-2.86255
-2.72041
-2.58234
3.15075
3.20058
3.23942
julia> sort!(randn(1000), alg=CombSort)
1000-element Array{Float64,1}:
-2.86255
-2.72041
-2.58234
3.15075
3.20058
3.23942
```

## Other packages that provide sorting algorithms
Expand Down

0 comments on commit b79b166

Please sign in to comment.