MT impl WIP
This commit is contained in:
parent
bbf0c0346f
commit
9cf2d0b952
@ -83,6 +83,13 @@ namespace algo {
|
|||||||
|
|
||||||
class MergeSort_v2 {
|
class MergeSort_v2 {
|
||||||
private:
|
private:
|
||||||
|
|
||||||
|
template<typename Iterator, typename Comparator>
|
||||||
|
static auto
|
||||||
|
mt_merge() {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
template<typename Iterator, typename Comparator>
|
template<typename Iterator, typename Comparator>
|
||||||
static auto
|
static auto
|
||||||
merge(Iterator start, Iterator middle, Iterator end, Comparator cmp, Iterator output_start, std::recursive_mutex &dataset_guard) -> void {
|
merge(Iterator start, Iterator middle, Iterator end, Comparator cmp, Iterator output_start, std::recursive_mutex &dataset_guard) -> void {
|
||||||
|
Loading…
Reference in New Issue
Block a user