01 2022 档案

摘要:#include <stdio.h> #include <stdlib.h> #define MAXSIZE 100 struct queue{ int front; int rear; int *p; }; void init(struct queue* s ) { s->front=0; s-> 阅读全文
posted @ 2022-01-24 22:21 UNkey 阅读(38) 评论(0) 推荐(0)
摘要:#include <stdio.h> #include <stdlib.h> struct students{ int age; int high; int *p; }; void init(struct students* s ) { s->age=10; s->high=188; s->p=(i 阅读全文
posted @ 2022-01-24 21:52 UNkey 阅读(94) 评论(0) 推荐(0)
摘要:用C语言实现了数据结构一书的图书管理系统,代码中有很多不完善甚至BUGs丛生。 #include<string.h> #include<stdio.h> #include<stdlib.h> #define MAX_BOOKS 10000 struct BOOK { const char *ISBN 阅读全文
posted @ 2022-01-18 20:39 UNkey 阅读(311) 评论(0) 推荐(0)
摘要:.tar 解包:tar xvf FileName.tar打包:tar cvf FileName.tar DirName(注:tar是打包,不是压缩!)———————————————.gz解压1:gunzip FileName.gz解压2:gzip -d FileName.gz压缩:gzip File 阅读全文
posted @ 2022-01-12 22:00 UNkey 阅读(1843) 评论(0) 推荐(0)