for(int startIndex = 0; startIndex < length- 1; ++startIndex) {
int smallest = startIndex;
for(int currentIndex = startIndex + 1; currentIndex < length; ++currentIndex) {
if(arr[currentIndex] < arr[smallest]) {
smallest = currentIndex;
}
}
swap(arr[startIndex], arr[smallest]);
}
}
У этой сортировки есть какое-то название или стандартно обычная сорта)?
Тип как -> bubble sort
сортировка выбором
Обсуждают сегодня