C++中用vector存放一个数组,对数组进行排序,并输出数组

我的程序没有语法错误但是运行不出结果:#include"stdafx.h"#include<iostream>#include<string>#include<vecto... 我的程序没有语法错误但是运行不出结果:
#include "stdafx.h"
#include <iostream>
#include <string>
#include <vector>
#include<algorithm>
using namespace std;
using std::vector;
int _tmain(int argc, _TCHAR* argv[]);
int main()
{
vector<int>::iterator iter;
string word;
vector<string>text;
while(cin>>word){
text.push_back(word);
}
for(vector<string>::iterator iter=text.begin();iter!=text.end();++iter)
sort(text.begin(),text.end());
cout<<*iter<<endl;
return 0;
}
展开
 我来答
hellfara
推荐于2017-09-02 · TA获得超过200个赞
知道小有建树答主
回答量:307
采纳率:0%
帮助的人:240万
展开全部
while(cin>>word){
text.push_back(word);
}
什么时候跳出循环?

for(vector<string>::iterator iter=text.begin();iter!=text.end();++iter)
sort(text.begin(),text.end());
sort一次就可以了,循环迭代的目的什么?

cout<<*iter<<endl;

for循环结束后,iter指向text.end(), 里面不包含有效数据, *iter是会抛出异常的
更多追问追答
追问
就是因为数组长度不确定,所以就只想着输入了,那该怎么改进呢?
噢噢,但我看vector中遍历元素是要用for循环的,那请问这种情况下应该在for循环里写什么语句呢?
噢噢,所以应该写成text.end()-1吧?
追答
判断输入为特定字符串时跳出循环
sort排序放到for循环前
cout输出在for循环中执行
weidong3630
2015-05-28 · 超过42用户采纳过TA的回答
知道小有建树答主
回答量:322
采纳率:28%
帮助的人:79.2万
展开全部
你这个输入循环没有结束条件,怎么往下执行? 
追问
嗯嗯
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式