gnomeSort<E> function
Sorts the list of numbers using the
gnome sort algorithm.
Parameters
listis any list of items to be sorted.- To perform partial sorting, you can specify the
beginorend. beginis the start index of the range to be sorted.- If
beginis negative, range starts at the 0 - If
beginis not below the length of thelist, range will be empty. endis the final index if the range to be sorted. It is exclusive.- If
endis above the length of thelist, it will be ignored. - If
endis negative, the absolute value of it will be subtracted from the length of thelistto determine where the range ends. - If
endis not greater than thebegin, the range will be empty. compareis a custom compare to order the list elements. If it is null andlistitems are not Comparable, TypeError is thrown.
Details
In this sort, in each iteration, if the item at the current index is less than
the previous item, they are swapped, and index decreases by 1. Otherwise, the
index increases by one. If index is at 0, it increases by 1. If index reaches the
end of the range, the sort is done.
This is a variation of the insertion sort with a simpler implementation, which performs better if the array is already or partially sorted.
Complexity: Time O(n^2) | Space O(1)
Best Case: Time O(n) | Space O(1)
Implementation
void gnomeSort<E>(
List<E> list, {
int? begin,
int? end,
Comparator<E>? compare,
}) {
int b, e;
int n = list.length;
// Find the range given the parameters.
b = 0;
e = n;
if (begin != null && b < begin) {
b = begin;
}
if (end != null && end < e) {
e = end;
if (e < 0) e += n;
}
if (compare == null) {
gnomeSortDefault(list, b, e);
} else {
gnomeSortCustom(list, b, e, compare);
}
}