以前的字符串题本来就弱。。2年不写就更弱了。嗯。留作教训

God Le is the most talented ACMer in the TJU-ACM team.

When he wants to open a file,he can just use his keyboard instead of using his mouse to click.

Why he can do this?Because he uses the cmd.exe. There are many commands in cmd.exe.But God Le is kind of lazy,so he just uses three commands to change the current directory.

"cd dir"(without quotes):put you in a subdirectory.For example,if you are in C:\Programs,typing cd Vim will put you in C:\Programs\Vim.

"Disk(like C,D,etc):"(without quotes):put you in the directory in that Disk that you are in most recently.For example,if you are in C:\Programs,typing D: and C: will put you in C:\Programs.(at the beginning,when you type Disk:,you will be in Disk:\).

"cd .."(without quotes):move you up one directory.So,if you are in C:\Programs\Vim,cd .. moves you to C:\Programs.

Because God Le is very smart,he won't go to the directory that is not existed. Now,given a sequence of commands,God Le wants to know the current directory.

One thing that you should know is that God Le's computer only have four disks C,D,E,F.

HINT I:The initial directory is C:\users\godle

HINT II:every subdirectory is only a string contains no more than 10 lower-case letters.

Input

There are mulit cases.Each case begins with an integer m(1 ≤ m ≤ 10^3)means the operations.Next there are m lines.Each line contains a command.

Output

For each command,print the current directory.You can get more hints from the sample.

Sample Input

5
cd ..
D:
cd ..
cd abc
C:

Sample Output

C:\users
D:
D:
D:\abc
C:\users

题目大意:就是读命令 执行  输出结果 很简单的模拟题

但要注意一下几点

1.Disk命令:  如果当前在 C:\zhou 进行1.D: 2. C: 命令后回到C:\zhou 而不是去C:\。

2.mulit case : 英语不好就这样被坑了。。结合样例以为只有一组数据 结果WA了N遍还不知悔改

3.反斜杠赋值要这样做  c='\\'

4.读了m后  还有一个换行符没读。如果用gets()读的话,记得用一次gets()把那个换行符给过滤掉

5.当然这题用 scanf("%s") 去处理似乎更加完美 详情见下面代码

6 活用 strcat strcmp strcat

上一下大牛代码仔细分析分析

<pre name="code" class="html"><pre name="code" class="cpp"><pre name="code" class="html"><pre name="code" class="cpp">#include<stdio.h>
#include<string.h> int main()
{
freopen("a.txt","r",stdin);
freopen("c.txt","w",stdout);
char str[4][20000];
char temp[20],dir[20];
int i,m,cur,j,len;
while(scanf("%d",&m)!=EOF)
{
cur=0;
strcpy(str[0],"C:\\users\\godle");
strcpy(str[1],"D:");
strcpy(str[2],"E:");
strcpy(str[3],"F:");
for(i=0;i<m;i++)
{
scanf("%s",temp);
if(strcmp(temp,"cd")==0)
{
scanf("%s",dir);
if(strcmp(dir,"..")==0)
{
len=strlen(str[cur]);
for(j=len-1;j>=0;j--)
if(str[cur][j]=='\\')
break;
if(j>=0)
str[cur][j]=0;
}
else
{
strcat(str[cur],"\\");
strcat(str[cur],dir);
}
}
if(strcmp(temp,"C:")==0)
{
cur=0;
}
if(strcmp(temp,"D:")==0)
{
cur=1;
}
if(strcmp(temp,"E:")==0)
{
cur=2;
}
if(strcmp(temp,"F:")==0)
{
cur=3;
}
printf("%s\n",str[cur]);
}
}
return 0;
}

十分优美的代码

因为多年没写 所以先解析基础知识



1.首先strcpy

原型声明:extern char *strcpy(char* dest, const char *src);
头文件:#include <string.h> 和 #include <stdio.h>
功能:把从src地址开始且含有NULL结束符的字符串复制到以dest开始的地址空间
说明:src和dest所指内存区域不可以重叠且dest必须有足够的空间来容纳src的字符串。
返回指向dest的指针
/**********************
*C语言标准库函数strcpy的一种典型的工业级的最简实现
*返回值:目标串的地址。
*对于出现异常的情况ANSI-C99标准并未定义,故由实现者决定返回值,通常为NULL。
*参数:des为目标字符串,source为原字符串
*/
 char*strcpy(char*des,constchar*source) {
 char*r=des;
 while(*des++=*source++);
 return;
 }
 /*while((*des++=*source++));的解释:赋值表达式返回左操作数,所以在复制NULL后,循环停止*/

2.strcmp

原型:extern int strcmp(const char *s1,const char * s2);
所在头文件:string.h
功能:比较字符串s1和s2。
一般形式:strcmp(字符串1,字符串2)
说明:
当s1<s2时,返回为负数
当s1=s2时,返回值= 0
当s1>s2时,返回正数
即:两个字符串自左向右逐个字符相比(按ASCII值大小相比较),直到出现不同的字符或遇'\0'为止。如:
"A"<"B" "a">"A" "computer">"compare"
最正宗的源码
/*strcmpfunction*/
#include<string.h>I
int(strap)(constchar*sl,constchar*s2)
{/*compareunsignedcharsl[],s2[]*/
for(;*sl==*s2;++sl,++s2)
if(*sl=='\O')
return(0);
return((*(unsignedchar*)sl<*(unsignedchar*)s2)?-1:+1);
}

3.strcpy

原型

extern char *strcat(char *dest,char *src);

用法

#include <string.h>

在C++中,则存在于<cstring>头文件中

功能

把src所指字符串添加到dest结尾处(覆盖dest结尾处的'\0')并添加'\0'。

说明

src和dest所指内存区域不可以重叠且dest必须有足够的空间来容纳src的字符串。

返回指向dest的指针

char*strcat(char*strDest,constchar*strSrc)
{
char*address=strDest;
while(*strDest)
strDest++; while(*strDest++=*strSrc++)
{}
return address;
}

仔细分析分析这道字符串题代码

很容易发现这类题目函数scanf ()的奇妙运用比Gets()好很多利用string的函数更是完美。

字符串的题目就是要多模仿代码。

上我丑陋的代码了

#include<stdio.h>
char A[101];
char s[5][1010];
int temp[5],d=0;
int main()
{
freopen("a.txt","r",stdin);
freopen("b.txt","w",stdout);
int n=0,i=0,j=0,t=0,x=0,z=0;
while(scanf("%d",&n)>0)
{
i=0,j=0,t=0,x=0,z=0,d=0;
memset(temp,0,sizeof(temp));
memset(s,0,sizeof(s));
temp[0]=2;
strcpy(s[0],"C:\\users\\godle");
strcpy(s[1],"D:");
strcpy(s[2],"E:");
strcpy(s[3],"F:"); gets(A);
for(i=1;i<=n;i++)
{
memset(A,0,sizeof(A));
gets(A);
if(A[0]=='c'&&A[1]=='d')
if(A[3]=='.')
{
t=0;x=0;
if (temp[d]==0) {printf("%c%c",s[d][0],s[d][1]); printf("\n");}
else {
temp[d]=temp[d]-1;
for(t=0;t<=temp[d];x++)
{
if(s[d][x]=='\\') t++;
if(t<=temp[d]) printf("%c",s[d][x]);
}
s[d][x-1]=0;
printf("\n");
}
}
else
{
temp[d]=temp[d]+1;
for(x=0;s[d][x]!=0;x++)
printf("%c",s[d][x]);
s[d][x]='\\';x++;z=x-1;
for(t=3;A[t]!=0;t++,x++)
s[d][x]=A[t];
s[d][x]=0;
for(x=z;s[d][x]!=0;x++)
printf("%c",s[d][x]);
printf("\n");
}
else
{
if(A[0]=='C') d=0;
else if(A[0]=='D') d=1;
else if(A[0]=='E') d=2;
else if(A[0]=='F') d=3;
for(x=0;s[d][x]!=0;x++)
printf("%c",s[d][x]);
printf("\n");
}
}
}
return 0;
}



教训:TOJ[4081] God Le wants to know the directory的更多相关文章

  1. 【转】DCC32的参数详解

    完整的内容如下: // DCC32编译器的设置说明. // Dcc32 [options] filename [options] // DCC32 [操作选项] 文件名称 [操作选项] // -A&l ...

  2. 关于要python爬虫你需要的一些网址和信息[待补充]

    phantomjs无头浏览器(基本不用) http://phantomjs.org/download.html 如果报 下面这种错误 [root@hwgz01 ~]# phantomjs phanto ...

  3. Le lié à la légèreté semblait être et donc plus simple

    Il est toutefois vraiment à partir www.runmasterfr.com/free-40-flyknit-2015-hommes-c-1_58_59.html de ...

  4. 新人入职100天,聊聊自己的经验&教训

    这篇文章讲了什么? 如题,本屌入职100天之后的经验和教训,具体包含: 对开发的一点感悟. 对如何提问的一点见解. 对Google开发流程的吐槽. 如果你 打算去国外工作. 对Google的开发流程感 ...

  5. TOJ 2776 CD Making

    TOJ 2776题目链接http://acm.tju.edu.cn/toj/showp2776.html 这题其实就是考虑的周全性...  贡献了好几次WA, 后来想了半天才知道哪里有遗漏.最大的问题 ...

  6. LVM原理及PV、VG、LV、PE、LE关系图

    PV(physical volume):物理卷在逻辑卷管理系统最底层,可为整个物理硬盘或实际物理硬盘上的分区.VG(volume group):卷组建立在物理卷上,一卷组中至少要包括一物理卷,卷组建立 ...

  7. android socket编程用Bufferreader读取的一个失败教训

    由于我的手机需要用笔记本开的wifi,躺在床上玩手机时需要关电脑或者是要让电脑放歌的时候总是不想下床,于是我想能不能用一个APP,然后通过局域网实现在手机上对电脑进行操控呢?说干就干. 我在电脑上用的 ...

  8. Redis简介、与memcached比较、存储方式、应用场景、生产经验教训、安全设置、key的建议、安装和常用数据类型介绍、ServiceStack.Redis使用(1)

    1.NOSQL简介 nosql的产生并不是要彻底的代替关系型数据库,而是作为传统关系型数据库的一个补充. Facebook和360使用Cassandra来存储海量社交数据 Twitter在其url抓取 ...

  9. android4.3 Bluetooth(le)分析之startLeScan分析

    BluetoothAdapter.java中有low enery(le)的一些方法,android提供了这些方法,但源码中并未找到这些方法的调用之处.本文档主要分析这类方法的执行流程,来了解下le到底 ...

随机推荐

  1. JMeter一个错误the target server failed to respond--JMeter坑

    问题:1.在测试一个http景象,特别是集波动TPS时刻,出现了一个错误.它现在是一个必须错误(压力顺利时却零星的错误,甚至很少见): 每次必现错误(開始一直怀疑是网络或程序的问题)   2.失败事务 ...

  2. oracle 临时表空间的增删改查

    oracle 临时表空间的增删改查 oracle 临时表空间的增删改查 1.查看临时表空间 (dba_temp_files视图)(v_$tempfile视图)select tablespace_nam ...

  3. EffectiveC#15--使用using和try/finally来做资源清理

    1.任何时候你在使用一个有Dispose()方法的类型时,你就有责任来调用Dispose()方法来释放资源. 最好的方法来保证Dispose()被调用的结构是使用using语句或者try/finall ...

  4. FlexSlider是一个非常出色的jQuery滑动切换插件

    FlexSlider是一个非常出色的jQuery滑动切换插件,它支持所有主流浏览器,并有淡入淡出效果.适合所有初级和高级网页设计师使用.不过很多人都只是使用默认的参数,今天来说说具体的参数来给大家看看 ...

  5. JS判断RadioButtonList是否有选中项

    提交表单之前对RadioButtonList控件的选中项进行判断: 方法一: <script type="text/javascript"> function chec ...

  6. Link-Cut-Tree题目泛做(为了对应自己的课件)

    题目1:BZOJ 2049 洞穴勘测 #include <bits/stdc++.h> #define L(x) c[x][0] #define R(x) c[x][1] using na ...

  7. VS2010无法断点调试解决办法

    今天我的VS2010忽然出现设置断点的时候,无法进行调试.现象:每次在设置断点调试的时候都会出现卡机,然后VS弹出如下图所示的状况: 解决办法: 依次点击:“工具-->扩展管理器”然后找到.Ne ...

  8. ThinkPHP框架一

    1.1 框架的概念 框架其实就是可重用代码的集合,框架的代码是框架架构的代码,不是业务逻辑代码,框架代码保护类.方法.函数等等,框架代码按照一定的规则组合起来就形成了框架. 1.2 不使用框架开发的时 ...

  9. Python之路第十三天,高级(7)-详述数据库一对多,多对多表关系的设计以及如何查询

    一对多表设计和查询方法 #!/usr/bin/env python3 # Author: Zhangxunan from sqlalchemy import create_engine from sq ...

  10. 利用7z实现一键解压

    目的: 实现双击zip,7z,rar等文件时自动解压,解压完毕后自动打开文件夹. 工具: [本文末尾附有所有工具的下载地址] 7z.exe types 步骤: 新建"7z-自动解压" ...