Moved .h and .cpp files to separate directories

This commit is contained in:
2019-11-28 22:45:12 +01:00
parent 76599a286f
commit 12adf61de9
16 changed files with 13 additions and 13 deletions
+25
View File
@@ -0,0 +1,25 @@
#include "../../../include/algorithm/sort/merge.h"
namespace c0ding::algorithm {
template<class T>
void merge::sort(std::vector<T>& list) {
if (list.size() > 1) {
}
}
template<class T>
void merge::sort_natural(std::vector<T>& list) {
if (list.size() > 1) {
}
}
template<class T>
void merge::_merge(std::vector<T>& left, std::vector<T>& right) {
}
template<class T>
std::vector<T> merge::_bitonic(std::vector<T>& list) {
return std::vector<T>();
}
}