Procedures

ProcedureLocationProcedure TypeDescription
lexical_sort_natural_recursive string_sort_module Subroutine

Sorts a character array str in increasing order, using a "natural" sorting method.

Read more…
lexical_sort_nonrecursive string_sort_module Subroutine

Sorts a character array str in increasing order.

Read more…
lexical_sort_recursive string_sort_module Subroutine

Sorts a character array str in increasing order. Uses a basic recursive quicksort (with insertion sort for partitions with <= 20 elements).

list_is_sorted string_sort_module Function

Returns true if the list is lexically sorted in increasing order.