您正在查看: 2015年7月

linux常用命令-文件与目录篇

Continue Reading...

apue读书笔记-第四章-文件和目录

int stat(const char *restrict pathname, struct stat *restrict buf);
int fstat(int filedes, struct stat * buf);
int lstat(const char *restrict pathname, struct stat *restrict buf);

lstat和前面2个区别是 当读取符号链接的时候,读取的符号链接的信息,而不是符号链接引用文件的信息

Continue Reading...

apue读书笔记-第三章-文件IO

Continue Reading...

算法设计与分析-习题-第二章

导读

 王晓东的《计算机算法设计与分析》是一本很不错的书,里面算法题目很多而且很有难度,适合学习和练手。所以打算把它里面的习题都做完。

Continue Reading...