?? main.cpp
字號:
//作者: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 + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -