// // Created by ahmad on 12/22/16. // #ifndef SORTALGORITHM_SORT_H #define SORTALGORITHM_SORT_H template void insertion_sort(T arr[], int size); template void bubble_sort(T arr[], int size); template void merge_sort(T arr[], int size); template void quick_sort(T arr[], int size); template void selection_sort(T arr[], int size); template void heap_sort(T arr[], int size); #include "sort.cpp" #endif //SORTALGORITHM_SORT_H