P33temp().cpp
资源名称:ds1-3.rar [点击查看]
上传用户:chaiyuqiu
上传日期:2022-08-03
资源大小:27k
文件大小:0k
源码类别:
数据结构
开发平台:
C/C++
- #include <datalist.h>
- #include <selecttm.h>
- template < class Type > void dataList <Type> :: BubbleSort() {
- int i = 1;
- int exchange = 1;
- while ( i < ArraySize && exchange ) {
- BubbleExchange ( i, exchange );
- i++;
- }
- }
- template < class Type > void dataList <Type> :: BubbleExchange ( const int i, int & exchange ) {
- exchange = 0;