题解 | #字符串变形#

字符串变形

https://www.nowcoder.com/practice/c3120c1c1bc44ad986259c0cf0f0b80e

#include <algorithm>
#include <cctype>
#include <stack>
class Solution {
public:
    /**
     * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
     *
     * 
     * @param s string字符串 
     * @param n int整型 
     * @return string字符串
     */
    string trans(string s, int n) {
        // write code here
        reverse(s.begin(), s.end());
        auto t=s.begin();
        for( auto i = s.begin();i<s.end()+1;i++){
            if(*i==' '|| i==s.end()){
                reverse(t,i);
                t=i+1;
            }else{
                if(isupper(*i))*i = tolower(*i);
                else
                    *i = toupper(*i);
            }  
        }
        return s;
    }
};

全部评论

相关推荐

移动信息技术中心 金种子 50+n w
点赞 评论 收藏
转发
点赞 收藏 评论
分享
牛客网
牛客企业服务