main.cpp
来自「八种排序算法」· C++ 代码 · 共 37 行
CPP
37 行
//作者:Clsn
//作于:2007年6月7日
//八种排序算法思想与实现
/*
*/
typedef int KeyType; //自行修改需要排序数据元素的数据类型
struct DataType
{
KeyType key;
};
#include <iostream>
#include "InsertSort.h" //插入
#include "ShellSort.h" //希尔
#include "HeapSort.h" //最大堆
#include "SelectSort.h" //选择
#include "BubbleSort.h" //冒泡
#include "QuickSort.h" //快速
#include "MergeSort.h" //归并
using namespace std;
int main()
{
//主函数请各位自行填写。
return 0;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?