插入排序、冒泡排序、选择排序、希尔排序、归并排序、快速排序、堆排序、基数排序的C++实现

头文件help.h用于生成数组 #include <iostream> #include <ctime> #include <string> using namespace std; /*生成随机数组,以供测试*/ int* makeRamdomArr(int count, int ldomain, int rdomain) { int *arr = new int[count]; sra
相关文章
相关标签/搜索