[leetcode]824. Goat Latin

[leetcode]824. Goat Latin


Analysis

周一快乐~—— [ummm~]

A sentence S is given, composed of words separated by spaces. Each word consists of lowercase and uppercase letters only.
We would like to convert the sentence to “Goat Latin” (a made-up language similar to Pig Latin.)
The rules of Goat Latin are as follows:
If a word begins with a vowel (a, e, i, o, or u), append “ma” to the end of the word.
For example, the word ‘apple’ becomes ‘applema’.
If a word begins with a consonant (i.e. not a vowel), remove the first letter and append it to the end, then add “ma”.
For example, the word “goat” becomes “oatgma”.
Add one letter ‘a’ to the end of each word per its word index in the sentence, starting with 1.
For example, the first word gets “a” added to the end, the second word gets “aa” added to the end and so on.
Return the final sentence representing the conversion from S to Goat Latin.
比较简单,就按照题目要求把字符串转换一下就行了~

Implement

class Solution {
public:
    string toGoatLatin(string S) {
        unordered_set<char> vowel = {'a', 'A', 'e', 'E', 'i', 'I', 'o', 'O', 'u', 'U'};
        vector<string> words;
        S += " ";
        int pos = S.find(" ");
        while(pos != S.npos){
            string tmp = S.substr(0, pos);
            words.push_back(tmp);
            S = S.substr(pos+1, S.size());
            pos = S.find(" ");
        }
        string res = "";
        string add = "a";
        for(int i=0; i<words.size(); i++){
            if(!vowel.count(words[i][0]))
                res += (words[i].substr(1, words[i].size())+words[i][0]+"ma"+add);
            else
                res += (words[i]+"ma"+add);
            if(i != words.size()-1)
                res += " ";
            add += "a";
        }
        return res;
    }
};

猜你喜欢

转载自blog.csdn.net/weixin_32135877/article/details/81282564