leetcode824

Posted AsenYang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode824相关的知识,希望对你有一定的参考价值。

class Solution {
public:
    void SplitString(const string& s, vector<string>& v, const string& c)
    {
        string::size_type pos1, pos2;
        pos2 = s.find(c);
        pos1 = 0;
        while (string::npos != pos2)
        {
            v.push_back(s.substr(pos1, pos2 - pos1));

            pos1 = pos2 + c.size();
            pos2 = s.find(c, pos1);
        }
        if (pos1 != s.length())
            v.push_back(s.substr(pos1));
    }
    string toGoatLatin(string S) {
        vector<string> V;
        SplitString(S, V, " ");
        set<char> ST;
        ST.insert(a); ST.insert(e); ST.insert(i); ST.insert(o); ST.insert(u);
        ST.insert(A); ST.insert(E); ST.insert(I); ST.insert(O); ST.insert(U);
        string Result = "";
        for (int i = 0; i < V.size(); i++)
        {
            string word = V[i];
            char begin = word[0];
            string newword = "";
            if (ST.find(begin) != ST.end())//元音
            {
                newword = word + "ma";                
            }
            else//辅音
            {
                string a = word.substr(1);                
                string b = word.substr(0, 1);                
                newword = a + b + "ma";                
            }
            for (int j = 0; j <= i; j++)
            {
                newword += "a";
            }
            Result += newword;
            if (i != V.size() - 1)
            {
                Result += " ";
            }
        }
        return Result;
    }
};

 

以上是关于leetcode824的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode-824 划水记录3

leetcode 824. 山羊拉丁文

LeetCode 824. Goat Latin (山羊拉丁文)

LeetCode 824. 山羊拉丁文 / 396. 旋转函数 / 587. 安装栅栏(不会,经典凸包问题,学)

MIT6.824-lab1-2022篇(万字推导思路及代码构建)

leetcode_1292. Maximum Side Length of a Square with Sum Less than or Equal to Threshold_[二维前缀和](代码片段