内容简介:下面的实现是来自K&R-C的习题实现:下面的例子只简单实现一次输入输出,并不实现系统 tail -f 一样的监控文件的实时输出运行例子:
下面的实现是来自K&R-C的习题实现:
编写程序tail,将输入中的n行打印出来。默认情况下,n的值为10,但可通过一个可选参数改变n的值,因此命令 tail -n 将打印其输入的最后n行。无论输入或n的值是否合理,该程序都应该能正常运行,编写的程序要充分利用存储空间
下面的例子只简单实现一次输入输出,并不实现系统 tail -f 一样的监控文件的实时输出
tail.c
#include <stdio.h> #include <stdlib.h> #include <string.h> #define MAXLINE 1000 void tail(int n); static int mygetline(char *s, int len); int main(int argc, char *argv[]) { int n = 10; char *arg; while (--argc > 0) { arg = *(++argv); if (*arg == '-') { n = atoi(++arg); } } tail(n); } void tail(int n) { printf("show %d lines: \n", n); int count = 0; char *lines[n]; char s[MAXLINE]; int w; char *p; while ((w = mygetline(s, MAXLINE)) != 0) { p = malloc(w); if (p == NULL) { printf("memory alloc error"); return; } else { strcpy(p, s); if (count >= n) { free(lines[count % n]); } lines[count % n] = p; count++; } } int start = 0; int end = n; if (count >= n) { start = count; end = count + n; } for (; start < end; start++) { printf("%s\n", lines[start % n]); free(lines[start % n]); } } static int mygetline(char *s, int len) { static char c; if (c == EOF) { return 0; } int i = 0; while ((c = getchar()) != '\n' && c != EOF && i < len - 1) { *(s + i++) = c; } if (c == '\n') { *(s + i) = '\n'; } *(s + i) = '\0'; return i; }
运行例子:
cc tail.c && ./a.out -10 < input.txt
以上所述就是小编给大家介绍的《tail的c语言简单实现》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!
猜你喜欢:本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Spring Boot实战
[美]克雷格·沃斯 / 丁雪丰 / 人民邮电出版社 / 2016-9 / 59.00元
本书以Spring应用程序开发为中心,全面讲解如何运用Spring Boot提高效率,使应用程序的开发和管理更加轻松有趣。作者行文亲切流畅,以大量示例讲解了Spring Boot在各类情境中的应用,内容涵盖起步依赖、Spring Boot CLI、Groovy、Grails、Actuator。对于Spring Boot开发应用中较为繁琐的内容,附录奉上整理完毕的表格,一目了然,方便读者查阅。一起来看看 《Spring Boot实战》 这本书的介绍吧!