单词翻转

//将一句话翻转
// I  am a student--> student a am I 
//先每个单词翻转,再整句话翻转

 1 #include<iostream>
 2 #include<string>
 3  using namespace std;
 4 
 5  class InvertWords{
 6 public:
 7     InvertWords(string* wo):words(wo){}
 8     void Invert()
 9     {
10         int len=words->size();
11         int beg=-1;
12         //翻转整个字符串
13         InvertWord(beg,len);
14         //翻转每个单词
15         for(int i=0;i<len;i++)
16         {
17             if(words->at(i)==' ')
18             {
19                 InvertWord(beg,i); 
20                 beg=i;
21             }
22         }
23     }
24 
25 private:
26     void InvertWord(int beg,int end)
27     {
28         char tmp;
29         while(++beg<--end)
30         {
31             tmp=words->at(beg);
32             words->at(beg)=words->at(end);
33             words->at(end)=tmp;
34         }
35     }
36     string* words;
37 };

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值