ll 列出来的结果详细,有时间,是否可读写等信息 ,象windows里的 详细信息 ls 只列出文件名或目录名 就象windows里的? 列表 ll -t 是降序,?ll -t | tac 是升序 ll不是命令,是ls?-l的别名
ls?命令可以说...
分类:
系统相关 时间:
2015-01-08 11:37:48
阅读次数:
214
catbbs.access.2014-05-01.log|awk‘{print$1}‘|sort-n|uniq-c|sort-n|tac|head-n10catbbs.access.2014-05-01.log|awk‘{print$1}‘|sort-n|uniq-c|sort-n|tail-n10catbbs.access.2014-05-01.log|awk‘{print$9}‘|sort-n|uniq-c[root@mode~]#awk‘{print$1}‘access_2010-12-8.log|so..
分类:
其他好文 时间:
2014-12-16 19:29:11
阅读次数:
181
1: cat file_full_name 这种方法适合查看小文件 cat /etc/services cat -n file_full_name -n 可以加行号! 2: tac file_full_name 这个命令与cat 差不多,cat 是从前向后看,tac是从后向前看...
分类:
系统相关 时间:
2014-12-14 21:11:27
阅读次数:
291
19.2Designanalgorithmtofigureoutifsomeonehaswoninagameoftic-tac-toe.classTicTacToe
{
enumTic
{
X,O
}
//GivenTicTacToemap,wheterthaswonthegame.
//Assumemapisanot-null3*3matrix,containingnonullelements.
//
//checkrow,checkcolumn,checkcorner
//Thisisabrutefor..
分类:
其他好文 时间:
2014-12-10 14:26:06
阅读次数:
187
linux cat,tac,more,less,head,tail,cut,sort,uniq,wc,tr命令的使用
cat:连接并显示,比如:[root@localhost~]#cat/tmp/sort.test
111
324
567
324
890
890
567
abc加上选项-n会显示行号:[root@localhost~]#cat-n/tmp/sort.test
1111
2324
3567
4324
5890
6890
7567
8abc加上-E选项会显示行尾符$:(linux中行尾符是$)root@localhost~]#cat-E/tmp..
分类:
系统相关 时间:
2014-12-09 01:57:25
阅读次数:
272
Difficulty:HardTopics:gameAtic-tac-toeboard is represented by a two dimensional vector. X is represented by :x, O is represented by :o, and empty is r...
分类:
其他好文 时间:
2014-11-26 20:50:11
阅读次数:
173
井字棋 ,这个模拟也是醉了
题目大意:
给出一个井字棋棋局,判断他是不是合法的。若合法且出现某人赢是谁赢了,没出现某人赢是下一步该谁下,还是平局。
解题思路:
分类讨论,就是模拟啊 恶心死~~
下面是(又臭又长的)代码:
#include
#include
#include
#include
#include
#includ...
分类:
其他好文 时间:
2014-11-24 13:34:51
阅读次数:
262
ProblemN*N matrix is given with input red or black.You can move horizontally, vertically or diagonally. If 3 consecutive samecolor found, that color w...
分类:
其他好文 时间:
2014-11-21 06:56:50
阅读次数:
291
题目:给你一个井字棋的状态,判断是否合法。
分析:枚举。直接枚举多有情况判断即可。
合法状态有三种情况:(X先下子)
1.X赢,则O不能赢,且X比O多一子;
2.O赢,则X不能赢,且O和X子一样多;
3.没人赢,此时O的子和可能和X一样多,也可能少一个。
说明:简单题(⊙_⊙)。
#inc...
分类:
其他好文 时间:
2014-11-16 14:45:33
阅读次数:
179
Linux 查看文件内容的命令 观看档案内容 : cat, tac, more, less, head, tail, nl, 刚刚我们提到的都只是在于显示档案的外观,或者是移动与复制一个档案或目录而已,那么如果我们要视察一个档案的内容时,该如何...
分类:
系统相关 时间:
2014-10-21 01:08:18
阅读次数:
330