摘要: ``` #include "iostream" using namespace std; struct node { int val; node *left, *right; node(int v):val(v), left(NULL), right(NULL){} } *root = NULL; int level[] = {1, 2, 3, 4, 5}; int in[] = {4, 2, 1 阅读全文
posted @ 2020-04-08 15:48 SteveYu 阅读(214) 评论(0) 推荐(0) 编辑
摘要: LinuxC——2.文件属性 0.❤️API stat、fstat、lstat umast chmod、fchmod chown、fchown、lchown link、unlink、remove、rename、symlink、readlink chdir、getcwd 1.🧡Linux的7种文件类 阅读全文
posted @ 2020-04-08 03:09 SteveYu 阅读(421) 评论(0) 推荐(0) 编辑