标签:tle 输入 amp 字符串 string c++ cto 输出 字符
如题,输入一个字符串,根据空格反转单词,
问题描述:
1、单词构成:无空格字符构成一个单词
2、输入字符串可以包含前导和尾随空格,但反转后的字符不能包括。
3、每个单词之间存在多个空格
方法:先提取每个单词,每次反转。
代码:
#include <string>
#include <vector>
std::string test(" I have a little dog. ");
test = reverseString1(test);
标签:tle 输入 amp 字符串 string c++ cto 输出 字符
原文地址:http://www.cnblogs.com/fullnamefull/p/7082971.html