Logo

Programming-Idioms

  • Fortran
  • Go
  • Perl

Idiom #290 Sort sublist

Sort the part of the list items from index i (included) to index j (excluded), in place, using the comparator c.

Elements before i and after j must remain unchanged.

@items[$i..$j] = sort $c @items[$i..$j];

Use perl's list slice capability to extract the elements between $i and $j, sort them using comparator function $c, and then replace the slice in situ.
sub := items[i:j]
sort.Slice(sub, func(a, b int) bool {
	return c(sub[a], sub[b])
})

A slice can be sorted in place.
import "slices"
slices.SortFunc(items[i:j], c)

SortFunc is generic and type-safe at compile time.
items.setRange(i, j, items.sublist(i, j)..sort(c));

New implementation...
< >
programming-idioms.org