Skip to content

Instantly share code, notes, and snippets.

@vankesteren
Created August 13, 2023 10:37
Show Gist options
  • Save vankesteren/01b52677839d2c46d61eac607c290836 to your computer and use it in GitHub Desktop.
Save vankesteren/01b52677839d2c46d61eac607c290836 to your computer and use it in GitHub Desktop.
Quicksort in Julia using recursion
function quicksort!(a::AbstractArray, lo::Int, hi::Int)
if lo > 0 && hi > 0 && lo < hi
p = partition!(a, lo, hi)
quicksort!(a, lo, p)
quicksort!(a, p + 1, hi)
end
end
quicksort!(a::AbstractArray) = quicksort!(a, firstindex(a), lastindex(a))
function partition!(a::AbstractArray, lo::Int, hi::Int)
pivot = a[Int(floor((hi - lo) / 2 + lo))]
while true
if a[lo] < pivot lo += 1 end
if a[hi] > pivot hi -= 1 end
if lo >= hi return hi end
a[lo], a[hi] = a[hi], a[lo]
end
end
a = rand(1_000_000)
quicksort!(a)
a
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment