Преглед изворни кода

Forgot to comment whatever depended on partition tehe

master
Ludovic 'Archivist' Lagouardette пре 3 година
родитељ
комит
fdaa5e0f55
1 измењених фајлова са 2 додато и 2 уклоњено
  1. +2
    -2
      include/gp/algorithms/sort.hpp

+ 2
- 2
include/gp/algorithms/sort.hpp Прегледај датотеку

@ -29,7 +29,7 @@ namespace gp {
}
return false;
};
/*
template<typename it_t, typename pred>
void quick_sort(it_t first, it_t last, pred predicate = pred{}) {
using __details::sort2;
@ -45,7 +45,7 @@ namespace gp {
gp::__details::quick_sort(first, pivot, predicate);
gp::__details::quick_sort(pivot, last, predicate);
}
*/
template<typename it_t, typename pred>
void bubble_sort(it_t first, it_t last, pred predicate = pred{}) {
if(last - first <= 2) {

Loading…
Откажи
Сачувај