1017 - Exact coverProblem's Link: http://acm.hust.edu.cn/problem/show/1017Mean:略analyse:ATime complexity: O(n)Source code:#include #include #include #...
分类:
其他好文 时间:
2015-04-15 00:43:14
阅读次数:
194
2298: [HAOI2011]problem aTime Limit:10 SecMemory Limit:256 MBSubmit:714Solved:314[Submit][Status][Discuss]Description一次考试共有n个人参加,第i个人说:“有ai个人分数比我高,bi个...
分类:
其他好文 时间:
2015-04-12 19:11:35
阅读次数:
133
A -ATime Limit:1000MSMemory Limit:262144KB64bit IO Format:%I64d & %I64uSubmitStatusDescriptionStudent Valera is an undergraduate student at the Univer...
分类:
其他好文 时间:
2015-04-08 21:21:15
阅读次数:
193
用途:stat命令用于显示文件或文件系统的状态信息,来自于coreutils软件包,一般系统自带此命令工具,它能获取与文件系统及文件相关的许多信息,具体用途见stat的功能选项。这些信息包括inode、atime、ctime、mtime、文件(系统)类型、权限、块大孝符号连接等。语法:stat[OPT..
分类:
系统相关 时间:
2015-04-08 16:50:58
阅读次数:
261
find: –name ‘filenme’ * ? [] ; –iname; –regex PATTERN; –user username; –group; –uid; –gid; –nouser; nogroup;-type; –size; –mtime; –ctime; –atime;-perm...
分类:
系统相关 时间:
2015-04-01 01:45:32
阅读次数:
178
ALTER PROCEDURE [dbo].[Hr_addNewMonth]asBEGIN INSERT INTO [Hr_1] ([日期时间],[姓名] ,[考勤号码]) select distinct CONVERT(char(10),日期时间,120) as atime,姓名,考勤号码 f.....
分类:
其他好文 时间:
2015-03-13 17:58:21
阅读次数:
208
调优方法原理:禁用atime的修改来节省cpu和内存资源。命令:mount noatime disk1、配置文件1. /etc/passwd文档结构:由":" 分隔成7个字段"username":"x":"uid":"gid":"remark":"homedirectory":"shell envi...
分类:
其他好文 时间:
2015-03-02 16:17:29
阅读次数:
220
Linux系统文件有三个主要的时间属性,分别是 ctime(change time), atime(access time), mtime(modify time)。这三个时间很容易混淆,准备深入了解linux的童鞋请区分这三者的区别。 atime:是在读取文件或者执行文件时更改,即文件最后一次被读取的时间。 mtime:是在写入文件时随文件内容的更改而更改,是指文件内容最后一次被修改的时间。 ctime:是在写入文件、更改所有者、权限或链接设置时随 Inode 的内容更改而更改,即文件状态最后一次被...
分类:
系统相关 时间:
2015-02-13 11:38:06
阅读次数:
215
linux的touch命令不常用,一般在使用make的时候可能会用到,用来修改文件时间戳,或者新建一个不存在的文件。 1.命令格式: touch [选项]... 文件... 2.命令参数: -a 或--time=atime或--time=access或--time=use 只更改存取时间。 -c 或...
分类:
系统相关 时间:
2015-02-07 06:48:15
阅读次数:
311
ctime是changetimeatime是accesstimemtime是modifiedtime更改文件的内容即会更改mtime和ctime,但是文件的ctime可能会在mtime未发生任何变化时更改–在权限更改,但是文件内容没有变化的情况下。ls-lcfilename列出文件的ctimels-lufilename列出文件的atimels-lfilename列?.
分类:
系统相关 时间:
2015-02-03 19:41:15
阅读次数:
191