题解 | #字符串变形#
字符串变形
https://www.nowcoder.com/practice/c3120c1c1bc44ad986259c0cf0f0b80e
#include <cstdio>
#include <iostream>
#include <string>
class Solution {
public:
/**
* 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
*
*
* @param s string字符串
* @param n int整型
* @return string字符串
*/
string trans(string s, int n) {
stack<string > stk;
string st1;
for(int i=0;i<n;i++){
if(s[i]>='a' && s[i]<='z')
{
st1+=s[i]-'a'+'A';
}
else if (s[i]>='A' && s[i]<='Z') {
st1+=s[i]-'A'+'a';
}
if (s[i]==' ') {
stk.push(st1);
stk.push("-");
st1 = "";
}
if (i==n-1) {
stk.push(st1);
}
}
string st2;
while (!stk.empty()) {
if (stk.top() == "-") {
st2+=" ";
}
else {
st2+=stk.top();
}
stk.pop();
}
return st2;
// write code here
}
};
#上班苦还是上学苦呢?##如果有时光机,你最想去到哪个年纪?#
凡岛公司福利 263人发布
