2 Star 0 Fork 0

xinanXu/myleetcode

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
LC394.cpp 1.14 KB
一键复制 编辑 原始数据 按行查看 历史
xinanXu 提交于 2024-01-28 16:37 . 394. 字符串解码
class Solution {
public:
string decodeString(string s) {
int len = s.size();
stack<string> st;
stack<int> nt;
for (int i = 0; i < len; i++) {
if (s[i] >= '0' && s[i] <= '9') {
string ss = "";
int j = i;
for ( ; s[j] >= '0' && s[j] <= '9'; j++)
ss += s[j];
nt.push(stoi(ss));
i = j - 1;
} else if (s[i] == ']') {
string ss = "";
while (st.top() != "[") {
ss = st.top() + ss;
st.pop();
}
st.pop();
ss.reserve();
string t = "";
int num = nt.top();
nt.pop();
for (int i = 0; i < num; i++)
t += ss;
st.push(t);
} else {
string ss = "";
ss += s[i];
st.push(ss);
}
}
string ss = "";
while (!st.empty()) {
ss = st.top() + ss;
st.pop();
}
return ss;
}
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/DearAtri/myleetcode.git
git@gitee.com:DearAtri/myleetcode.git
DearAtri
myleetcode
myleetcode
master

搜索帮助