Просмотр исходного кода

back to selection sort, no partition

master
Ludovic 'Archivist' Lagouardette 3 лет назад
Родитель
Сommit
5041266ecc
2 измененных файлов: 3 добавлений и 3 удалений
  1. +2
    -2
      include/gp/algorithms/partition.hpp
  2. +1
    -1
      include/gp/algorithms/sort.hpp

+ 2
- 2
include/gp/algorithms/partition.hpp Просмотреть файл

@ -36,9 +36,9 @@ namespace gp {
return first;
}
/**
template<typename it_t, typename pred>
it_t partition(it_t first, it_t last, pred predicate = pred{}) {
return gp::hoare_partition(first, last, predicate);
}
}**/
}

+ 1
- 1
include/gp/algorithms/sort.hpp Просмотреть файл

@ -70,6 +70,6 @@ namespace gp {
template<typename it_t, typename pred>
void sort(it_t first, it_t last, pred predicate = pred{}) {
return gp::__details::bubble_sort(first, last, predicate);
return gp::__details::selection_sort(first, last, predicate);
}
}

Загрузка…
Отмена
Сохранить