P22temp.cpp
上传用户:chaiyuqiu
上传日期:2022-08-03
资源大小:27k
文件大小:0k
源码类别:

数据结构

开发平台:

C/C++

  1. #include "datalist.h"
  2. #include "selecttm.h"
  3. const int size = 10;
  4. int main() {
  5.     dataList <int> TestList (size) ;
  6.     cin >> TestList;
  7.     cout << "Testing Selection Sort: n" << TestList << endl;
  8.     TestList.Sort();
  9.     cout << "After sorting: n" << TestList << endl;
  10.     return 0;
  11. }