// // Created by ahmad on 12/22/16. // template void insertion_sort(T arr[], int size) { return; } template void bubble_sort(T arr[], int size) { return; } template void merge_sort(T arr[], int size) { return; } template void quick_sort(T arr[], int size) { return; } template void selection_sort(T arr[], int size) { return; } template void heap_sort(T arr[], int size) { return; }