P22temp.cpp
资源名称:ds1-3.rar [点击查看]
上传用户:chaiyuqiu
上传日期:2022-08-03
资源大小:27k
文件大小:0k
源码类别:
数据结构
开发平台:
C/C++
- #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;
- }