上一页 1 ··· 5 6 7 8 9 10 11 12 13 下一页
摘要: 今天介绍一个R画图布局的包,地址如下: https://github.com/zzawadz/customLayout https://www.customlayout.zstat.pl/index.html 阅读全文
posted @ 2020-11-17 09:28 天使不设防 阅读(519) 评论(0) 推荐(0) 编辑
摘要: 再改进下上次的读入一行函数,利用zlib库的gzgtec函数读取文件,动态分配内存,最后没有多出空行。 1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <string.h> 4 #include <zlib.h> 5 6 char *rea 阅读全文
posted @ 2020-11-10 15:37 天使不设防 阅读(146) 评论(0) 推荐(0) 编辑
摘要: 在之前的博客中 https://www.cnblogs.com/mmtinfo/p/13036039.html 读取一行的getline()函数是GNU 的扩展函数。 这里用自定义函数实现这个功能,从文件中读取整行,不论一行多长,动态分配内存。 1 #include <stdlib.h> 2 #in 阅读全文
posted @ 2020-11-06 19:47 天使不设防 阅读(342) 评论(0) 推荐(0) 编辑
摘要: 修改可读取压缩格式文件 1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <string.h> 4 #include <zlib.h> 5 6 #define RLEN 1024 7 8 static void getfq(char *fq) 阅读全文
posted @ 2020-11-04 17:17 天使不设防 阅读(214) 评论(0) 推荐(0) 编辑
摘要: 目前只能处理短序列,若要处理长序列,可按照https://www.cnblogs.com/mmtinfo/p/13036039.html的读取方法。 1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <string.h> 4 #define 阅读全文
posted @ 2020-11-04 10:34 天使不设防 阅读(305) 评论(0) 推荐(0) 编辑
摘要: 字符串存入数组 文本内容: line1_1 line1_2line2_1 line2_2line3_1 line3_2line4_1 line4_2line5_1 line5_2line6_1 line6_2 C代码: 1 #include <stdlib.h> 2 #include <stdio. 阅读全文
posted @ 2020-11-03 15:43 天使不设防 阅读(2013) 评论(0) 推荐(0) 编辑
摘要: 1 static char *revers(char *s) 2 { 3 int len=strlen(s); 4 char *s2=(char *)malloc(sizeof(char)*(len+1)); 5 for(int i=len-1; i>=0; i--) 6 { 7 switch (s 阅读全文
posted @ 2020-10-28 11:22 天使不设防 阅读(399) 评论(0) 推荐(0) 编辑
摘要: 利用getdelim函数分割读取字段,将文件制表符替换为空格符 1 #include <stdio.h> 2 #include <stdlib.h> 3 4 int main(int argc, char *argv[]) 5 { 6 char *line = NULL; 7 FILE *fp; 8 阅读全文
posted @ 2020-10-19 10:08 天使不设防 阅读(1224) 评论(0) 推荐(0) 编辑
摘要: 指向指针数组的指针。 1 #include <stdio.h> 2 3 int main(void) 4 { 5 char *pa[4]={"aaaaa","bbbbb","ccccc","ddddd"}; // 类型: char* (*)[4] 6 7 char** p=pa; // 指针p指向一 阅读全文
posted @ 2020-10-08 16:27 天使不设防 阅读(161) 评论(0) 推荐(0) 编辑
摘要: C语言一级指针指向一级指针 和二级指针指向一级指针的区别! 1 #include <stdio.h> 2 #include <string.h> 3 4 int main(void) 5 { 6 char s1[]="hello"; 7 char *p = s1; 8 char *q = p; 9 阅读全文
posted @ 2020-09-30 18:02 天使不设防 阅读(111) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 下一页