SPEED
qsort_c_module Module Reference

Quick-sort algorithm. More...

Functions/Subroutines

recursive subroutine, public qsortc (a)
 

Detailed Description

Quick-sort algorithm.

Author
Ilario Mazzieri
Date
September, 2013 - Creation
Version
1.0

Function/Subroutine Documentation

◆ qsortc()

recursive subroutine, public qsort_c_module::qsortc ( integer, dimension(:), intent(inout)  a)

Definition at line 620 of file MODULES.f90.

621 integer, intent(in out), dimension(:) :: A
622 integer :: iq
623
624 if(size(a) > 1) then
625 call partition(a, iq)
626 call qsortc(a(:iq-1))
627 call qsortc(a(iq:))
628 endif

References qsortc().

Referenced by get_loc_node_num(), make_ren_loc_node(), and qsortc().

Here is the call graph for this function:
Here is the caller graph for this function: