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没有发挥排序的作用,结果仍是原序列,不知道怎么回事,希望各位大神指点下

参考技术A 从程序逻辑上来看,你的程序是没有问题的。有可能是你输入的数据已经是从小到大排好序了的,尝试着输入无序的数据,看看排序结果。 参考技术B 排序是从小到大 你输入从大到小的数

以上是关于c++小白求助!用sort对vector排序的问题的主要内容,如果未能解决你的问题,请参考以下文章

c++用sort对vector排序问题

c++请教 vector sort怎么写

Vector容器 二维数组sort()排序

关于C++中vector和set使用sort方法进行排序

C++中 sort 函数的使用详解

c++读入一些整数,对其进行从小到大的排序要求使用vector和sort函数。