代码拉取完成,页面将自动刷新
#include <iostream>
#include <algorithm>
#include "SortTestHelper.h"
#include <String>
#include "Student.h"
#include "SortFunction.h"
using namespace std;
//递归使用归并排序,对
template <typename T>
void __mergeSort(T arr[] , int l, int r){
}
//归并排序过程merge 拿内存换空间
template <typename T>
void mergeSort(T arr[] , int n){
__mergeSort(arr , 0 , n-1);
}
int main() {
int n = 20000;
int *arr = SortTestHelper::generateRandomArray(n , 0 , n);
int *arr2= SortTestHelper::copyIntArray(arr,n);
int *arr3= SortTestHelper::copyIntArray(arr,n);
// selectionSort(arr , n);
// SortTestHelper::printArray( arr , n );
// SortTestHelper::testSort("Selection Sort", selectionSort,arr,n);
// Student c[4] = {{"D",90},{"C",100},{"B",95},{"A",95}};
// selectionSort(c,4);
// SortTestHelper::printArray( c , 4 );
SortTestHelper::testSort("Selection Sort", selectionSort,arr,n);
SortTestHelper::testSort("Inserting Sort", insertionSort,arr2,n);
SortTestHelper::testSort("Inserting2 Sort", insertionSort2,arr3,n);
delete[] arr;
delete[] arr2;
return 0;
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。