1 Star 0 Fork 0

别样红/算法实例

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
main.cpp 1.11 KB
一键复制 编辑 原始数据 按行查看 历史
#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;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/yingrihehuabieyanghong/algorithm_implementation.git
git@gitee.com:yingrihehuabieyanghong/algorithm_implementation.git
yingrihehuabieyanghong
algorithm_implementation
算法实例
master

搜索帮助