将字符串按单词反转输出(华为笔试题C++实现)

将字符串按单词反转输出,如输入:hello sir 输出:olleh ris 。

借助C++ vector容器实现,主要思路是:按空格将字符串拆分为单词,将各个单词进行反转,然后拼接成新的字符串。

需要注意的是在输入字符串的时候不能直接用cin,因为cin在遇到空格时就会认为字符串已结束,无法得到需要的完整字符串,建议使用getline函数代替。本人就是因为这个原因,搞得很头痛,最后单步调试才发现这个问题,浪费了很多时间。

#include 
#include 
#include 
#include 
using namespace std;
int main()
{
	string str;
	getline(cin,str);
	int len=str.length();
	vector vtr;
	int pre=0, pos=0;
	string temp;
	for (int i=0; i::iterator it;
	for (it=vtr.begin(); it!=vtr.end(); it++)
	{
		reverse((*it).begin(), (*it).end());
		cout<<*it<<" ";
	}
	cout<

 

你可能感兴趣的:(将字符串按单词反转输出(华为笔试题C++实现))