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

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

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

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

#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
using namespace std;
int main()
{
	string str;
	getline(cin,str);
	int len=str.length();
	vector<string> vtr;
	int pre=0, pos=0;
	string temp;
	for (int i=0; i<len+1; i++)
	{
		if (str[i]==' ')
		{
			pos=i;
			temp.insert(temp.begin(), str.begin()+pre, str.begin()+pos);
			vtr.push_back(temp);
			pre=pos+1;
			temp.clear();
		}
		if (str[i]=='\0')
		{
			temp.insert(temp.begin(), str.begin()+pre, str.end());
			vtr.push_back(temp);
		}
	}
	vector<string>::iterator it;
	for (it=vtr.begin(); it!=vtr.end(); it++)
	{
		reverse((*it).begin(), (*it).end());
		cout<<*it<<" ";
	}
	cout<<endl;

	system("pause");
	return 0;
}

 

  • 1
    点赞
  • 19
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值