codeforces158C】的更多相关文章

题目链接 题意很清楚 和linux的语句是一样的 pwd输出路径 cd进入 ..回上一层目录 此题完全是string的应用 String的用法 vector<string> s; int main() { int n; scanf("%d", &n); while(n--) { string cd; cin>>cd; if(cd=="pwd") { printf("/"); ;i<s.size();i++)…
Cd and pwd commands CodeForces - 158C Vasya is writing an operating system shell, and it should have commands for working with directories. To begin with, he decided to go with just two commands: cd (change the current directory) and pwd (display the…
题意 https://vjudge.net/problem/CodeForces-158C 你需要实现类似 Unix / Linux 下的 cd 和 pwd 命令. 一开始,用户处于根目录 / 下. 对于 cd 命令,它的作用是跳转到某个路径.路径有相对路径和绝对路径,相对路径以文件夹名开头,表示当前目录下的文件夹,绝对路径以 / 开头,表示根目录下的文件夹.同时,.. 文件夹表示上一层文件夹. 对于 pwd 命令,你需要输出当前所在的绝对路径. 保证输入数据中所有的文件夹都存在. 思路 用栈记…