p22temp.cpp
来自「数据结构各种算法的实现」· C++ 代码 · 共 12 行
CPP
12 行
#include "datalist.h"
#include "selecttm.h"
const int size = 10;
int main() {
dataList <int> TestList (size) ;
cin >> TestList;
cout << "Testing Selection Sort: \n" << TestList << endl;
TestList.Sort();
cout << "After sorting: \n" << TestList << endl;
return 0;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?