c++小白求助!用sort对vector排序的问题
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c++小白求助!用sort对vector排序的问题相关的知识,希望对你有一定的参考价值。
代码如下:
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
int main()
vector<int> v1;
int k = 0;
while (cin >> k)
v1.push_back(k);
if (cin.get() == '\n')
break;
sort(v1.begin(),v1.end());
for (vector<int>::iterator it = v1.begin(); it != v1.end(); ++it)
cout << *it << endl;
system("pause");
return 0;
运行过程中sort没有发挥排序的作用,结果仍是原序列,不知道怎么回事,希望各位大神指点下
以上是关于c++小白求助!用sort对vector排序的问题的主要内容,如果未能解决你的问题,请参考以下文章