C从文件反转行顺序

时间:2016-01-09 17:17:51

标签: c file reverse lines

我被要求制作一个程序,将文件的行顺序反转为输入。例如:

$ cat file1 一月 二月 行军

$ cat file2 一 二 3

$ ./program file1 file2 三 二 一 游行 二月 一月

所以,我已经做了几乎所有的事情并且逆转工作正常,但问题出现了。程序打印反向引入的第一个文件,而不是第一个文件。例如:

$ ./program file1 file2 游行 二月 一月 三 二 一个

我已经尝试了所有的东西,但仍然无法弄清楚问题是什么。 这是代码:

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sysexits.h>
#include "auxiliar.h"

#define MAXLINEA 2048
#define Bocabajo "bocabajo"

void Ayuda(void){
   fprintf(stdout, "%s: Uso: %s [ fichero... ]\n", Bocabajo, Bocabajo);
   fprintf(stdout, "%s: Invierte el orden de las lineas de los ficheros     (o de la entrada).\n", Bocabajo);
   exit(EX_OK);
}

int main ( int argc, char *argv[] )
{
  char linea[MAXLINEA];
  char **lineas;
  int tamanio = 0;
  int nleidos = 0;
  int i,j;
  FILE *file;

  if (argc == 2 && !strcmp(argv[1], "-h")){
    Ayuda();
  }
  else if (argc == 1) {
    tamanio = 2;
    lineas = malloc(sizeof(char *));

    while (fgets (linea, MAXLINEA, stdin) ) {
      if (nleidos >= tamanio) {
        tamanio *= 2;
        lineas = realloc (lineas, sizeof(char *) * tamanio);
        if (!lineas)
          Error(EX_OSERR, " Ubicacion memoria dinamica desconocida");
      }
      lineas[nleidos] = strdup(linea);
      nleidos++;
    }
    for ( i=0; i<nleidos; i++)
      printf ("%s", lineas[nleidos-i-1]);

    for ( i=0; i<nleidos; i++)
      free (lineas[i]);
    free (lineas);

 }else{
    for (i=1; i<argc; i++){
      tamanio = 2;
      lineas = malloc(sizeof (char *));
      nleidos = 0;
      if ((file = fopen(argv[i], "r")) == NULL){
        Error(EX_NOINPUT,".*\"%s\" ilegible o inexistente",argv[i]);
     }else{
        while (fgets (linea, MAXLINEA, file) != NULL){
          if (nleidos >= tamanio) {
            tamanio *= 2;
            lineas = realloc (lineas, sizeof(char *) * tamanio);
            if (!lineas)
              Error(EX_OSERR, " Ubicacion memoria dinamica desconcida");
          }
          lineas[nleidos] = strdup(linea);
          nleidos++;
        }
        fclose(file);

        for (j=0; j<nleidos; j++)
          printf ("%s", lineas[nleidos-j-1]);

        for (j=0; j<nleidos; j++)
          free (lineas[j]);
        free(lineas);
      }
    }
  }
  return(EX_OK);
}
PD:对不起我的英语不太好。

1 个答案:

答案 0 :(得分:2)

以相反方向迭代命令行参数。改变这个:

for (i=1; i<argc; i++){

到此:

for (i=argc-1; i>0; i--){