上一页 1 ··· 4 5 6 7 8
摘要: Linux关机和开机 #shutdown [选项] 时间 选项:-c:取消前一个关机命令 -h:关机 -r:重启 时间:now表示立即执行 06:00早上六点重启 #shutdown -r 06:00 &:表示早晨6点重启,后台执行,按回车可以继续做事,如果最后不加&,则界面锁住,什么也做不了 #s 阅读全文
posted @ 2017-04-09 00:37 crazybird123 阅读(286) 评论(0) 推荐(0) 编辑
摘要: Andrew S. Tanenbaum参考Unix,写了Minix,并开源,Linus Torvalds以其为模板写了Linux。 Linux包含内核版本和发行版本。 Linux内核版本 Linux内核官网:www.kernel.org 内核版本说明:如2.6.18,其中2为主版本,6为次版本,18 阅读全文
posted @ 2017-04-07 01:21 crazybird123 阅读(15854) 评论(0) 推荐(1) 编辑
摘要: 1、线性表的顺序存储 #include <stdio.h> #include <malloc.h> typedef int ElementType; #define MAXSIZE 10 struct listStr { int data[MAXSIZE]; int last; }; typedef 阅读全文
posted @ 2017-04-05 00:28 crazybird123 阅读(185) 评论(0) 推荐(0) 编辑
摘要: 1、写程序实现一个函数printN,使得传入一个正整数N,顺序打印1到N的全部正整数 #include <stdio.h>#include <time.h> void printLoopN(int N);void printRecursionN(int N); int main(){ clock_t 阅读全文
posted @ 2017-04-02 17:20 crazybird123 阅读(267) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8