给定一个由空格分割单词的句子 S。每个单词只包含大写或小写字母。
根据单词在句子中的索引,在单词最后添加与索引相同数量的字母'a',索引从1开始。 例如,在第一个单词后添加"a",在第二个单词后添加"aa",以此类推。 返回将 S 转换为山羊拉丁文后的句子。
示例 1:
输入: "I speak Goat Latin"
输出: "Imaa peaksmaaa oatGmaaaa atinLmaaaaa"
示例 2:
输入: "The quick brown fox jumped over the lazy dog"
输出: "heTmaa uickqmaaa rownbmaaaa oxfmaaaaa umpedjmaaaaaa overmaaaaaaa hetmaaaaaaaa azylmaaaaaaaaa ogdmaaaaaaaaaa"
说明:
S 中仅包含大小写字母和空格。单词间有且仅有一个空格。
1 <= S.length <= 150。
class Solution {
private:
unordered_set<char>ma={'a','e','i','o','u','A','E','I','O','U'};
public:
string toGoatLatin(string S) {
vector<string> tmp;
string t;
for(auto i: S)
{
if(i==' ')
{
tmp.push_back(t);
t="";
}
else
t+=i;
}
tmp.push_back(t);
for(int i=0;i<tmp.size();i++)
{
if(ma.count(tmp[i][0]))
tmp[i]=tmp[i]+"ma";
else
{
tmp[i]=tmp[i].substr(1) +tmp[i][0]+"ma";
}
int n=i+1;
while(n-- >0)
{
tmp[i] +="a";
}
}
t="";
for(int i=0;i<tmp.size()-1;i++)
t+=tmp[i]+" ";
t+=tmp[tmp.size()-1];
return t;
}
};
执行用时 : 8 ms, 在Goat Latin的C++提交中击败了95.14% 的用户
内存消耗 : 9.5 MB, 在Goat Latin的C++提交中击败了56.52% 的用户