第二周作业内容:

1、Linux上的文件管理类命令都有哪些,其常用的使用方法及其相关示例演示。

文件管理类命令: 复制:CP  ,移动:MV  删除:RM

cp

命令功能:将一个或多个源文件或目录复制到指定的目标文件或目录

命令格式:

cp [OPTION]... [-T]SOURCE DEST      //cp [选项]…[-T]源目的

cp [OPTION]...SOURCE... DIRECTORY   // cp [选项]…源…目录

cp [OPTION]... -tDIRECTORY SOURCE...  // cp [选项]…-t 目录 源…

常用选项:

-i:交互式复制,即覆盖之前提醒用户确认

-f:强制覆盖目标文件

-r:递归复制目录(大写R也是这个功能)

-d:--no-dereference --preserv=links 复制符号链接文件本身,而非其指向的源文件

-a:归档,相当于-dR --preserve=all,archive,用于实现归档;

--preserve[=ATTR_LIST]

mode:权限    #默认

ownership:属主和属组     #默认

timestamps:时间戳      #默认

context:安全标签

xattr:扩展属性

links:符号链接

all:上述所有属性

-p:--preserv=mode,ownership,timestamp

-v:--verbose

命令示例:

(1)复制和改名

[[email protected] ~]# ls

anaconda-ks.cfg  conf.n cshrc  cshrcvc  h  opt

[[email protected] ~]# cp anaconda-ks.cfg  /tmp

[[email protected] ~]# ls /tmp

anaconda-ks.cfg  gates.lod hsperfdata_root  moni.lod

[[email protected] ~]# cp anaconda-ks.cfg  /tmp

cp: overwrite ‘/tmp/anaconda-ks.cfg’? y

[[email protected] ~]# alias

alias cp=‘cp -i‘

alias egrep=‘egrep --color=auto‘

alias fgrep=‘fgrep --color=auto‘

alias grep=‘grep --color=auto‘

alias l.=‘ls -d .* --color=auto‘

alias ll=‘ls -l --color=auto‘

alias ls=‘ls --color=auto‘

alias mv=‘mv -i‘

alias rm=‘rm -i‘

alias which=‘alias | /usr/bin/which--tty-only --read-alias --show-dot --show-tilde‘

[[email protected] ~]# cp anaconda-ks.cfg  /tmp/ana.cfg

[[email protected] ~]# ls /tmp

ana.cfg anaconda-ks.cfg  gates.lod  hsperfdata_root  moni.lod

(2)使用-r参数,复制目录

[[email protected] ~]# cp test /tmp

cp: omitting directory ‘test’

[[email protected] ~]# cp -r test /tmp

[[email protected] ~]# ls /tmp/test/

test.txt

(3)使用-a参数,把权限等都复制过来

[[email protected] tmp]# ls -l test

total 4

-rw-r--r--. 1 root root 3 Aug 14 10:43test.txt

[[email protected] tmp]# ls /root

anaconda-ks.cfg  conf.n cshrc  cshrcvc  h opt  test

[[email protected] tmp]# cp /root/conf.n .

[[email protected] tmp]# ls -l

total 20

-rw-------. 1 root root 1651 Aug 14 10:39ana.cfg

-rw-------. 1 root root 1651 Aug 14 10:37anaconda-ks.cfg

-rw-r--r--. 1 root root   73 Aug 14 10:52 conf.n

-rwxr-xr-x. 1 root root    5 Aug 12 14:09 gates.lod

drwxr-xr-x. 2 root root   30 Aug 11 08:24 hsperfdata_root

-rwxr-xr-x. 1 root root    5 Aug 12 14:09 moni.lod

drwxr-xr-x. 2 root root   21 Aug 14 10:43 test

drw-------. 2 root root    6 Aug 14 10:48 test2

[[email protected] tmp]# rm conf.n

rm: remove regular file ‘conf.n’? y

[[email protected] tmp]# cp -a /root/conf.n .

[[email protected] tmp]# ls -l

total 20

-rw-------. 1 root root 1651 Aug 14 10:39ana.cfg

-rw-------. 1 root root 1651 Aug 14 10:37anaconda-ks.cfg

-rw-r--r--. 1 root root   73 Aug 14 10:19 conf.n

-rwxr-xr-x. 1 root root    5 Aug 12 14:09 gates.lod

drwxr-xr-x. 2 root root   30 Aug 11 08:24 hsperfdata_root

-rwxr-xr-x. 1 root root    5 Aug 12 14:09 moni.lod

drwxr-xr-x. 2 root root   21 Aug 14 10:43 test

drw-------. 2 root root    6 Aug 14 10:48 test2

mv

命令功能:为文件或目录改名,或将文件或目录移动到其它位置

命令格式:

mv [OPTION]...[-T] SOURCE DEST

mv [OPTION]...SOURCE... DIRECTORY

mv [OPTION]...-t DIRECTORY SOURCE...

常用选项:

-i:交互式

-f:force强制覆盖,不提示

-v:显示移动过程

-u:若目标文件已经存在,且 source 比较新,才会更新(update)

-b:若需覆盖文件,则覆盖前先行备份

-t:即指定mv的目标目录,该选项适用于移动多个源文件到一个目录的情况,此时目标目录在前,源文件在后

(1)移动文件

[[email protected] tmp]# ll

total 20

-rw-------. 1 root root 1651 Aug 14 10:39ana.cfg

-rw-------. 1 root root 1651 Aug 14 10:37anaconda-ks.cfg

-rw-r--r--. 1 root root   73 Aug 14 10:19 conf.n

-rwxr-xr-x. 1 root root    5 Aug 12 14:09 gates.lod

drwxr-xr-x. 2 root root   30 Aug 11 08:24 hsperfdata_root

-rwxr-xr-x. 1 root root    5 Aug 12 14:09 moni.lod

drwxr-xr-x. 2 root root   21 Aug 14 10:43 test

drw-------. 2 root root    6 Aug 14 10:48 test2

[[email protected] tmp]# mv test2 /root

[[email protected] tmp]# ll

total 20

-rw-------. 1 root root 1651 Aug 14 10:39ana.cfg

-rw-------. 1 root root 1651 Aug 14 10:37anaconda-ks.cfg

-rw-r--r--. 1 root root   73 Aug 14 10:19 conf.n

-rwxr-xr-x. 1 root root    5 Aug 12 14:09 gates.lod

drwxr-xr-x. 2 root root   30 Aug 11 08:24 hsperfdata_root

-rwxr-xr-x. 1 root root    5 Aug 12 14:09 moni.lod

drwxr-xr-x. 2 root root   21 Aug 14 10:43 test

[[email protected] tmp]# mv conf.n test

[[email protected] tmp]# ls /test

ls: cannot access /test: No such file ordirectory

[[email protected] tmp]# ls /tmp/test/

conf.n test.txt

(2)使用-f参数,强制移动不提示

[[email protected] tmp]# ll

total 16

-rw-------. 1 root root 1651 Aug 14 10:39ana.cfg

-rw-------. 1 root root 1651 Aug 14 10:37anaconda-ks.cfg

-rwxr-xr-x. 1 root root    5 Aug 12 14:09 gates.lod

drwxr-xr-x. 2 root root   30 Aug 11 08:24 hsperfdata_root

-rwxr-xr-x. 1 root root    5 Aug 12 14:09 moni.lod

drwxr-xr-x. 3 root root   46 Aug 14 11:02 test

drwxr-xr-x. 2 root root    6 Aug 14 11:00 test2

[[email protected] tmp]# cp ana.cfg  /test2

[[email protected] tmp]# ls

ana.cfg anaconda-ks.cfg  gates.lod  hsperfdata_root  moni.lod test  test2

[[email protected] tmp]# mv ana.cfg /test2

mv: overwrite ‘/test2’? n

[[email protected] tmp]# mv -f ana.cfg /test2

rm

命令功能:删除一个目录中的一个或多个文件或目录

命令格式:rm[OPTION]... FILE...

命令选项:

-i:interactive交互式

-f:force强制删除

-r:recursive递归删除

删除目录:rm -rf/PATH/TO/DIR

危险操作:rm -rf /*(6和7有提示,5没有)

命令示例:

[[email protected]]# ls

anaconda-ks.cfg  gates.lod hsperfdata_root  moni.lod  test test2

[[email protected] tmp]# cd test

[[email protected] test]# ls

conf.n test2  test.txt

[[email protected] test]# cd ..

[[email protected] tmp]# rm test

rm: cannot remove ‘test’: Is a directory

[[email protected] tmp]# rm -f test

rm: cannot remove ‘test’: Is a directory

[[email protected] tmp]# rm -rf test

[[email protected] tmp]# ll

total 12

-rw-------. 1 root root 1651 Aug 14 10:37anaconda-ks.cfg

-rwxr-xr-x. 1 root root    5 Aug 12 14:09 gates.lod

drwxr-xr-x. 2 root root   30 Aug 11 08:24 hsperfdata_root

-rwxr-xr-x. 1 root root    5 Aug 12 14:09 moni.lod

drwxr-xr-x. 2 root root    6 Aug 14 11:00 test2

2、bash的工作特性之命令执行状态返回值和命令行展开涉及的内容及其示例演示。


:bash命令执行完成后会有一个返回值,保存在$?中,如果正常执行,返回0,错误则返回值为1-255之间的数字。当执行命令后,执行echo$?查看。

命令示例:

[[email protected] tmp]# echo $?

0

[[email protected] tmp]# lss -l

-bash: lss: command not found

[[email protected] tmp]# ls -l

total 12

-rw-------. 1 root root 1651 Aug 14 10:37anaconda-ks.cfg

-rwxr-xr-x. 1 root root    5 Aug 12 14:09 gates.lod

drwxr-xr-x. 2 root root   30 Aug 11 08:24 hsperfdata_root

-rwxr-xr-x. 1 root root    5 Aug 12 14:09 moni.lod

drwxr-xr-x. 2 root root    6 Aug 14 11:00 test2

[[email protected] tmp]# echo $?

0

[[email protected] tmp]# lssss -l

-bash: lssss: command not found

[[email protected] tmp]# echo $?

127

[[email protected] tmp]#

3、请使用命令行展开功能来完成以下练习:

(1)、创建/tmp目录下的:a_c, a_d,b_c, b_d

(2)、创建/tmp/mylinux目录下的:

mylinux/

├── bin

├── boot

│   └── grub

├── dev

├── etc

│   ├── rc.d

│   │   └── init.d

│   └── sysconfig

│       └── network-scripts

├── lib

│   └── modules

├── lib64

├── proc

├── sbin

├── sys

├── tmp

├── usr

│   └── local

│       ├── bin

│       └── sbin

└── var

├── lock

├── log

└── run

1

[[email protected] tmp]# mkdir -v {a,b}_{c,d}

mkdir: created directory ‘a_c’

mkdir: created directory ‘a_d’

mkdir: created directory ‘b_c’

2

[email protected] ~]# mkdir -pv /tmp/mylinux/{bin,boot/grub,dev,etc/{rc.d/init.d,sysconfig/network-scripts},lib/modules,lib64,proc,sbin,sys,tmp,usr/local/{bin,sbin},var,lock,log,run}

4、文件的元数据信息有哪些,分别表示什么含义,如何查看?如何修改文件的时间戳信息。

答:

三个时间戳:

         Accesstime: 访问时间,简写为atime,读取文件内容

         Modifytime: 修改时间,mtime,改变文件内容(数据)

         Changetime: 改动时间,ctime,元数据发生改变

使用stat命令查看时间戳信息

命令事例:

[[email protected] mylinux]# stat bin

File: ‘bin’

Size: 6             Blocks: 0          IO Block: 4096   directory

Device: 806h/2054d  Inode: 8429698     Links: 2

Access: (0755/drwxr-xr-x)  Uid: (   0/    root)   Gid: (   0/    root)

Context:unconfined_u:object_r:user_tmp_t:s0

Access: 2016-08-14 11:14:33.271718977 -0400

Modify: 2016-08-14 11:14:27.771718824 -0400

Change: 2016-08-14 11:14:27.771718824 -0400

Birth: -

[[email protected] mylinux]# ls

bin boot  dev  etc lib  lib64  lock log  proc  run sbin  sys  tmp usr  var

[[email protected] mylinux]# ls

bin boot  dev  etc lib  lib64  lock log  proc  run sbin  sys  tmp usr  var

[[email protected] mylinux]# touchu bin

-bash: touchu: command not found

[[email protected] mylinux]# touch bin

[[email protected] mylinux]# stat bin

File: ‘bin’

Size: 6             Blocks: 0          IO Block: 4096   directory

Device: 806h/2054d  Inode: 8429698     Links: 2

Access: (0755/drwxr-xr-x)  Uid: (   0/    root)   Gid: (   0/    root)

Context:unconfined_u:object_r:user_tmp_t:s0

Access: 2016-08-14 11:20:54.901729622 -0400

Modify: 2016-08-14 11:20:54.901729622 -0400

Change: 2016-08-14 11:20:54.901729622 -0400

Birth: -

[[email protected] mylinux]# touchu -a bin

-bash: touchu: command not found

[[email protected] mylinux]# touch -a bin

[[email protected] mylinux]# stat bin

File: ‘bin’

Size: 6             Blocks: 0          IO Block: 4096   directory

Device: 806h/2054d  Inode: 8429698     Links: 2

Access: (0755/drwxr-xr-x)  Uid: (   0/    root)   Gid: (   0/    root)

Context:unconfined_u:object_r:user_tmp_t:s0

Access: 2016-08-14 11:21:33.325730694 -0400

Modify: 2016-08-14 11:20:54.901729622 -0400

Change: 2016-08-14 11:21:33.325730694 -0400

Birth: -

[[email protected] mylinux]#

(2)使用-m -t参数改修改时间

[[email protected] mylinux]# touch -m -t201508142324.35 bin

[[email protected] mylinux]# stat bin

File: ‘bin’

Size: 6             Blocks: 0          IO Block: 4096   directory

Device: 806h/2054d  Inode: 8429698     Links: 2

Access: (0755/drwxr-xr-x)  Uid: (   0/    root)   Gid: (   0/    root)

Context:unconfined_u:object_r:user_tmp_t:s0

Access: 2016-08-14 11:21:33.325730694 -0400

Modify: 2015-08-14 23:24:35.000000000 -0400

Change: 2016-08-14 11:24:39.415735884 -0400

Birth: -

5、如何定义一个命令的别名,如何在命令中引用另一个命令的执行结果?

答:

(1)定义命令别名通过alias命令实现:

alias NAME=‘VALUE‘

[[email protected] mylinux]# aliasipconfiginfo=‘cat /etc/sysconfig/network-scripts/ifcfg-em1‘

[[email protected] mylinux]# ipconfiginfo |tail -3

IPADDR=192.168.1.252

NETMASK=255.255.255.0

GATEWAY=192.168.1.1

6、显示/var目录下所有以l开头,以一个小写字母结尾,且中间至少出现一位数字(可以有其它字符)的文件或目录。

[[email protected] mylinux]# touch Iabc2.a

[[email protected] mylinux]# ls

bin boot  dev  etc Iabc2.a  lib  lib64 lock  log  proc run  sbin  sys tmp  usr  var

[[email protected] mylinux]# ls -dl*[[:digit:]]*[[:lower:]]

ls: cannot accessl*[[:digit:]]*[[:lower:]]: No such file or directory

[[email protected] mylinux]# ls -d I*[[:digit:]]*[[:lower:]]

Iabc2.a

7、显示/etc目录下,以任意一个数字开头,且以非数字结尾的文件或目录。

[[email protected] mylinux]# mkdir a333 3aaa

[[email protected] mylinux]# ls -d/tmp/mylinux/[0-9]*[^0-9]

/tmp/mylinux/233aaaa23233a  /tmp/mylinux/3aaa

[[email protected] mylinux]#

8、显示/etc目录下,以非字母开头,后面跟了一个字母以及其它任意长度任意字符的文件或目录。

[[email protected] mylinux]# ls

233aaaa23233a  23fdfds2 3aaa  a333  bin boot  dev  etc Iabc2.a  [email protected]  lib lib64  lock  log proc  run  sbin sys  tmp  usr var

[[email protected] mylinux]#  ls -d /etc/[^[:alpha:]][[:alpha:]]*

ls: cannot access/etc/[^[:alpha:]][[:alpha:]]*: No such file or directory

[[email protected] mylinux]# ls -d/tmp/mylinux/[^[:alpha:]][[:alpha:]]*

/tmp/mylinux/3aaa

9、在/tmp目录下创建以tfile开头,后跟当前日期和时间的文件,文件名形如:tfile-2016-08-06-09-32-22。

[[email protected] mylinux]#  touch /tmp/tfile-`date+"%Y-%m-%d-%H-%M-%S"`

[[email protected] mylinux]#  ls -d /tmp/tf*[0-9]

/tmp/tfile-2016-08-14-11-45-51

[[email protected] mylinux]#

10、复制/etc目录下所有以p开头,以非数字结尾的文件或目录到/tmp/mytest1目录中。

[[email protected] tmp]# ls

a_c a_d  anaconda-ks.cfg  b_c b_d  gates.lod  hsperfdata_root  moni.lod mylinux  mytest1  test2 tfile-2016-08-14-11-45-51

[[email protected] tmp]#  ls -d /etc/p*[^[:digit:]]

/etc/pam.d  /etc/passwd-  /etc/plymouth  /etc/popt.d  /etc/ppp             /etc/printcap  /etc/profile.d    /etc/protocols

/etc/passwd /etc/pki      /etc/pm        /etc/postfix  /etc/prelink.conf.d  /etc/profile  /etc/profile.ori  /etc/python

[[email protected] tmp]#  cp -r /etc/p*[^[:digit:]] /tmp/mytest1/

[[email protected] tmp]# ls -d/tmp/mytest1/p*[^[:digit:]]

/tmp/mytest1/pam.d   /tmp/mytest1/passwd-  /tmp/mytest1/plymouth  /tmp/mytest1/popt.d   /tmp/mytest1/ppp             /tmp/mytest1/printcap  /tmp/mytest1/profile.d    /tmp/mytest1/protocols

/tmp/mytest1/passwd  /tmp/mytest1/pki      /tmp/mytest1/pm        /tmp/mytest1/postfix  /tmp/mytest1/prelink.conf.d  /tmp/mytest1/profile   /tmp/mytest1/profile.ori  /tmp/mytest1/python

[[email protected] tmp]#

11、复制/etc目录下所有以.d结尾的文件或目录至/tmp/mytest2目录中。、

[[email protected]]# mkdir /tmp/mytest2

[[email protected] tmp]#  ls -d /etc/*.d

/etc/bash_completion.d  /etc/depmod.d       /etc/init.d        /etc/modules-load.d  /etc/prelink.conf.d  /etc/rc2.d /etc/rc6.d     /etc/statetab.d  /etc/xinetd.d

/etc/binfmt.d           /etc/dnsmasq.d      /etc/ld.so.conf.d  /etc/my.cnf.d        /etc/profile.d       /etc/rc3.d  /etc/rc.d       /etc/sudoers.d   /etc/yum.repos.d

/etc/chkconfig.d        /etc/dracut.conf.d  /etc/logrotate.d   /etc/pam.d           /etc/rc0.d           /etc/rc4.d  /etc/rsyslog.d  /etc/sysctl.d

/etc/cron.d             /etc/grub.d         /etc/modprobe.d    /etc/popt.d          /etc/rc1.d           /etc/rc5.d  /etc/rwtab.d    /etc/tmpfiles.d

[[email protected] tmp]# cp -r /etc/*.d /tmp/mytest2

[[email protected] tmp]#  ls -d /tmp/mytest2/*.d

/tmp/mytest2/bash_completion.d  /tmp/mytest2/dnsmasq.d      /tmp/mytest2/logrotate.d     /tmp/mytest2/popt.d          /tmp/mytest2/rc2.d  /tmp/mytest2/rc.d        /tmp/mytest2/sysctl.d

/tmp/mytest2/binfmt.d           /tmp/mytest2/dracut.conf.d  /tmp/mytest2/modprobe.d      /tmp/mytest2/prelink.conf.d  /tmp/mytest2/rc3.d  /tmp/mytest2/rsyslog.d   /tmp/mytest2/tmpfiles.d

/tmp/mytest2/chkconfig.d        /tmp/mytest2/grub.d         /tmp/mytest2/modules-load.d  /tmp/mytest2/profile.d       /tmp/mytest2/rc4.d  /tmp/mytest2/rwtab.d     /tmp/mytest2/xinetd.d

/tmp/mytest2/cron.d             /tmp/mytest2/init.d         /tmp/mytest2/my.cnf.d        /tmp/mytest2/rc0.d           /tmp/mytest2/rc5.d  /tmp/mytest2/statetab.d  /tmp/mytest2/yum.repos.d

/tmp/mytest2/depmod.d           /tmp/mytest2/ld.so.conf.d   /tmp/mytest2/pam.d           /tmp/mytest2/rc1.d           /tmp/mytest2/rc6.d  /tmp/mytest2/sudoers.d

[[email protected] tmp]#

12、复制/etc/目录下所有以l或m或n开头,以.conf结尾的文件至/tmp/mytest3目录中。

[[email protected] tmp]# mkdir/tmp/mytest3

[[email protected] tmp]#  ls -d /etc/[1,m,n]*.conf

/etc/man_db.conf  /etc/mke2fs.conf  /etc/nsswitch.conf

[[email protected] tmp]# cp -r/etc/[1,m,n]*.conf /tmp/mytest3/

[[email protected] tmp]# ls -d/tmp/mytest3/[1,m,n]*.conf

/tmp/mytest3/man_db.conf  /tmp/mytest3/mke2fs.conf  /tmp/mytest3/nsswitch.conf

[[email protected] tmp]#

时间: 2024-10-31 21:34:29

第二周作业内容:的相关文章

马哥linux 培训第二周作业

注意:第二周作业,请将以下题目整理在51cto博客当中,完成后请将对应的博文链接地址提交在答案栏中,提交格式如下:学号+姓名+博文链接地址eg:1+张三+http://mageedu.blog.51cto.com/4265610/1794420 本周作业内容:1.Linux上的文件管理类命令都有哪些,其常用的使用方法及其相关示例演示. 文件管理的命令有cp.mv.rm 复制命令:cp 用法: cp [-adfilprsu] 来源文件(source) 目标文件(destination) cp [o

魏昊卿——《Linux内核分析》第二周作业:了解操作系统是怎样工作的

魏昊卿——<Linux内核分析>第二周作业:了解操作系统是怎样工作的 一.实验部分 使用实验楼的虚拟机打开shell cd LinuxKernel/linux-3.9.4 qemu -kernel arch/x86/boot/bzImage 然后cd mykernel 您可以看到qemu窗口输出的内容的代码mymain.c和myinterrupt.c 使用自己的Linux系统环境搭建过程参见mykernel,其中也可以找到一个简单的时间片轮转多道程序内核代码 mymain.c myinterr

学习linux第二周作业

第二周作业: 本周作业内容: 1.Linux上的文件管理类命令都有哪些,其常用的使用方法及其相关示例演示. touch,rm,mv,cp,file,ls,chmod,chown,ln,rename, touch 修改文件atime,如果文件不存在,那么创建该文件. rm:删除文件. -r:循环删除,包含文件和目录 -f:强制删除,布询问. -i:询问是否删除. 默认情况下,系统自带别名,rm=rm -i mv:移动文件,可以在移动的过程中重命名文件或文件夹. 例如:移动重命名mytest1目录为

软件测试第二周作业 wordcount

软件测试第二周作业 wordcount Github地址 https://github.com/mxz96102/word_count PSP2.1表格 PSP2.1 PSP 阶段 预估耗时 (分钟) 实际耗时 (分钟) Planning 计划 25 30 · Estimate · 估计这个任务需要多少时间 150 252 Development 开发     · Analysis · 需求分析 (包括学习新技术) 20 20 · Design Spec · 生成设计文档 0 0 · Desig

软件质量与测试第二周作业 WordCount

第二周作业 WordCount 一.Github 地址 https://github.com/llag9810/Software-Quality-and-Testing-Wordcount 二.PSP2.1 表格 PSP2.1 PSP阶段 预估耗时 (分钟) 实际耗时 (分钟) Planning 计划 60 25 · Estimate · 估计这个任务需要多少时间 30 15 Development 开发 600 810 · Analysis · 需求分析 (包括学习新技术) 60 60 · D

解题报告——2018级2016第二学期第二周作业

解题报告——2018级2016第二学期第二周作业 D:迷宫问题 题目描述: 定义一个二维数组: int maze[5][5] = { 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 0, }; 它表示一个迷宫,其中的1表示墙壁,0表示可以走的路,只能横着走或竖着走,不能斜着走,要求编程序找出从左上角到右下角的最短路线. 输入 一个5 × 5的二维数组,表示一个迷宫.数据保证有唯一解. 输出 左上角到右

第二周作业补交(请老师看一下)

#include<stdio.h> #include<math.h> int main(void) { int money,year; double rate,sum; printf("Enter money:"); scanf("%d",&money); printf("Enter year:"); scanf("%d",&year); printf("Enter rate:

软件工程 第二周作业

##软件工程第二周作业 提出问题 1. 一般来说,想要自己的程序跑得又快又好,就要减少函数的反复调用,但有所得则必有所失,效能提高就有可能伴随着程序的稳定性的降低,这两者应该如何权衡呢? 2. 关于5.3.5 老板驱动的流程,这种开发流程模式存在着一些问题,那要如何解决这些问题呢? 这种模式当然也有它的问题. 领导对许多技术细节是外行. 领导未必懂得软件项目的管理,领导的权威影响了自由的交流和创造. 领导最擅长的管理方式是行政命令,这未必能管好软件团队或任何需要创造力的团队. 领导的精力有限,领

第二周作业-词频统计

本周作业是词频统计,编程具体要求如下: https://edu.cnblogs.com/campus/nenu/SWE2017FALL/homework/922 对实现功能进行简要的介绍: 功能一:小文件输入,为表明程序能跑.需要在控制台下输入命令,得到文件中不重复的总单词数.并对单词出现的次数进行排序输出. 功能二:支持命令行输入英文作品的文件名,亲自录入,输出显示不重复单词总数,并对出现频率最高的前10的单词进行输出 功能三:支持命令行输入存储有英文作品文件的目录名,批量统计词频. 功能四: