08 2020 档案

摘要:时间优先的方式实现数据的压缩、解压缩 #define _CRT_SECURE_NO_WARNINGS #include <stdio.h> #include <stdlib.h> #include <string.h> // "aaaaabbbhaihualovefangfangooooooooo" 阅读全文
posted @ 2020-08-04 16:22 ant_colonies 阅读(286) 评论(0) 推荐(0)
摘要:硬盘检索 将硬盘中的文件逐行读入内存进行检索,速度慢 #define _CRT_SECURE_NO_WARNINGS #include <stdlib.h> #include <stdio.h> #include <string.h> #include <time.h> char path[256] 阅读全文
posted @ 2020-08-02 17:40 ant_colonies 阅读(176) 评论(0) 推荐(0)