思维导图
练习
定义一个命名空间Myspace,包含以下函数:将一个字符串中的所有单词进行反转,并输出反转后的结果。例如,输入字符串为"Hello World",输出结果为"olleH dlroW",并在主函数内测试该函数。
#include <iostream>
using namespace std;
namespace Myspace
{
void Myreverse(string *str);
}
void Myspace::Myreverse(string *str)
{
int i = 0, j, k;
int len = str->length();
while(1)
{
//跳过空格
while(i < len && str->at(i) == ' ')
i++;
//判断是否结束
if(i == len)
break;
//记录单词首字母下标
j = i;
//单词末字母下标
while(i < len && str->at(i) != ' ')
i++;
k = i-1;
//交换
for(;j<k;j++, k--)
{
char temp = str->at(j);
str->at(j) = str->at(k);
str->at(k) = temp;
}
}
}
int main()
{
string str;
getline(cin, str);
cout << "反转前为:" << str << endl;
Myspace::Myreverse(&str);
cout << "反转后为:" << str << endl;
return 0;
}