代码拉取完成,页面将自动刷新
class Solution {
public:
string simplifyPath(string path) {
int len = path.size();
if (!len) return "";
stack<string> s;
s.push("root");
string ret;
for (int i = 0; i < len; ) {
if (path[i] == '/') {
i++;
continue;
} else if (path[i] == '.') {
if (i + 1 >= len) {
i++;
continue;
} else if (path[i+1] == '/') {
i += 2;
continue;
} else if (path[i+1] == '.') {
if (i + 2 < len) {
if (path[i+2] != '/') {}
else {
if (s.top() != "root") s.pop();
i += 3;
continue;
}
} else {
if (s.top() != "root") s.pop();
i += 3;
continue;
}
}
}
string temp;
while (i < len && path[i] != '/') {
temp.push_back(path[i]);
i++;
}
s.push(temp);
}
stack<string> t;
while (s.top() != "root") {
t.push(s.top());
s.pop();
}
while (!t.empty()) {
ret += '/';
ret += t.top();
t.pop();
}
if (!ret.size()) ret = "/";
return ret;
}
};
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。