码迷,mamicode.com
首页 > 其他好文 > 详细

英文句子中的单词逆序

时间:2014-06-08 03:46:56      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:英文句子单词逆序

#include "stdafx.h"
#include <iostream>
#include <string>
#include <stack>
using namespace std;

int main(int arc, char** argv)
{
	string str="I come from liaoning.";
	stack<string> works;

	int len=str.length();
	while(1)
	{
		int start=str.find_first_not_of(" ");
		int end=str.find_first_of(" ");
		int wlen=end-start;
		if(end!=-1)
		{
			string temp=str.substr(start,wlen);	
			works.push(temp);
		}
		else
		{
			works.push(str);
			break;
		}
		str=str.substr(end+1,len-wlen);
	}

	while(!works.empty())
	{
		string temp=works.top();
		cout<<temp<<" ";
		works.pop();
	}
	cout<<endl;

	system("pause");
	return 0;
}
bubuko.com,布布扣

英文句子中的单词逆序,布布扣,bubuko.com

英文句子中的单词逆序

标签:英文句子单词逆序

原文地址:http://blog.csdn.net/cjc211322/article/details/29201501

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!