文件中有一组整数,要求排序后输出到另一个文件中
17 查阅
参考答案:
#i nclude<iostream>
\r\n
#i nclude<fstream>
using namespace std;
void Order(vector<int>& data) //bubble sort
{
int count = data.size() ;
int tag = false ; // 设置是否需要继续冒泡的标志位
for ( int i =