Skip to content

Instantly share code, notes, and snippets.

@1AdAstra1
1AdAstra1 / quicksort.f
Last active March 1, 2023 18:29 — forked from t-nissie/quicksort.f
quick sort in Fortran
! quicksort.f -*-f90-*-
! Author: t-nissie, some tweaks by 1AdAstra1
! License: GPLv3
! Gist: https://gist.github.com/t-nissie/479f0f16966925fa29ea
!!
recursive subroutine quicksort(a)
implicit none
real :: a(:)
real x, t
integer :: first = 1, last