c - 卡在二维数组上,将指针插入文件中的字符串

标签 c pointers multidimensional-array file-io

编辑:使用普通 c

这部分是指我的最后一个问题,但我现在完全重写了代码大约 3 次,而且我已经陷入了困境。我读过很多关于 2D 数组的不同内容,我对我应该认为正确的东西感到困惑,其他 stackoverflow 帖子让我更加困惑:(

例如:

char array[A][B];

一些消息来源说 A 是 nr。字段的个数,B 是一个字段的长度,也有人说 A 是 nr。行数和 B 的编号。矩阵的列数。其他人说这只能保存单个字符。

继续解决我的问题:

我正在编写一个测验,并且我有一个数据库文件,其中每一行如下所示:

Multiple Words A#Multiple Words B#Multiple Words C

现在我想读取文件并将该行拆分为多个变量,这些变量的定义如下:

char frageinhalt[50][255]; // the question itself (later smth like "capital of germany?"
char antw1[50][255]; // the first answer to the question
char antw2[50][255]; // second answ

行应该像这样分割:

Multiple Words A => frageinhalt
Multiple Words B => antw1
Multiple Words C => antw2

每一行应该在数组中获得一个分配的字段,这样我就可以简单地在其他函数中打印它们。

例如: 我想打印第一个问题及其答案

printf("%s,%s,%s",frageinhalt[0],antw1[0],antw2[0]);

但这在我的代码中不起作用。有什么想法吗?

完整代码如下。

#include<stdio.h>
#include<stdlib.h>
#include<string.h>

int readfromfile(); // func prototype

char data[100]; // a row from the file

char temp[50];

//Fragebezogen
char id[50][5]; // question nr
char frageinhalt[50][255]; // the question itself (later smth like "capital of germany?"
char antw1[50][255]; // the first answer to the question
char antw2[50][255]; // second answ


int main() {
  readfromfile();
  printf("\nFrageinhalt: %s Antw1: %s Antw2: %s\n", frageinhalt[1], antw1[1], antw2[1]); // Doesn't work properly
  return 0;
}
int readfromfile() {
  FILE *datei_ptr;
  int i = 0;
  char ch;
  int lines = 0;
  int k = 0;
  char delimiter[] = ",;#";
  char *ptr;


  datei_ptr = fopen("test.txt", "r");

  if (datei_ptr == NULL) {
    printf("nothing left in file");



 }
  else {

while (!feof(datei_ptr))
{
  ch = fgetc(datei_ptr);
  if (ch == '\n') // Wenn der gerade gelesene Character ein Zeilenumbruch ist..
  {
    lines++; // Erhöhe die Anzahl der Zeilen um 1
  }
}

fclose(datei_ptr);
datei_ptr = fopen("test.txt", "r");
do {
  fgets (data, 255, datei_ptr);
  puts(data);


  ptr = strtok(data, delimiter);
  printf("###############################\n");
  while (ptr != NULL)
  {

    printf("Abschnitt gefunden: %s\n", ptr);

    // naechsten Abschnitt erstellen
    ptr = strtok(NULL, delimiter);
  }
  printf("###############################\n");
  k++;
} while (k != lines + 1);

fclose(datei_ptr);
  }

}

最佳答案

以下建议代码:

  1. 干净地编译
  2. 执行 OP 隐含的功能
  3. 用有意义的名称替换(大部分)“神奇”数字
  4. 消除未使用/不需要的局部变量和不需要的逻辑
  5. 格式化代码以便于可读和理解
  6. 正确地将错误消息(以及操作系统认为发生错误的原因)输出到stderr
  7. 正确声明不接收参数的子函数的原型(prototype)

现在,建议的代码:

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#define MAX_ROW_LEN      1024
#define MAX_LINES        50
#define MAX_QUESTION_LEN 255
#define MAX_ANSWER_LEN   255

void readfromfile( void ); // func prototype

char data[ MAX_ROW_LEN ]; // a row from the file


//Fragebezogen
char id[ MAX_LINES ][5]; // question nr
char frageinhalt[ MAX_LINES ][ MAX_QUESTION_LEN ]; // the question itself (later smth like "capital of germany?"
char antw1[ MAX_LINES ][ MAX_ANSWER_LEN ]; // the first answer to the question
char antw2[ MAX_LINES ][ MAX_ANSWER_LEN ]; // second answ


int main( void )
{
    readfromfile();
    printf("\nFrageinhalt: %s Antw1: %s Antw2: %s\n",
            frageinhalt[1],
            antw1[1],
            antw2[1]);
    return 0;
}


void readfromfile()
{
    FILE *datei_ptr;
    char delimiter[] = ",;#";
    char *token;

    datei_ptr = fopen("test.txt", "r");

    if ( !datei_ptr )
    {
        perror( "fopen failed" );
        exit( EXIT_FAILURE );
    }

    int lineCounter = 0;
    while( lineCounter < MAX_LINES && fgets (data, sizeof( data ), datei_ptr) )
    {
        puts(data);
        printf("###############################\n");

        token = strtok(data, delimiter);

        if ( token )
        {
            printf("Abschnitt gefunden: %s\n", token);
            strncpy( id[ lineCounter ], token, 5 );

            token = strtok(NULL, delimiter);
            if( token )
            {
                strncpy( frageinhalt[ lineCounter ], token, MAX_QUESTION_LEN );

                token = strtok( NULL, delimiter );
                if( token )
                {
                    strncpy( antw1[ lineCounter ], token, MAX_ANSWER_LEN );

                    token = strtok( NULL, delimiter );
                    if( token )
                    {
                        strncpy( antw2[ lineCounter ], token, MAX_ANSWER_LEN );
                    }
                }
            }
        }

        printf("###############################\n");
        lineCounter++;
    }

    fclose(datei_ptr);
}

关于c - 卡在二维数组上,将指针插入文件中的字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50775278/

相关文章:

arrays - 如何使用 Powershell 通过其值查找数组中元素的索引

条件跳转或移动取决于未初始化的值

c - 了解结构中的填充

objective-c - Objective-c 上的指针

c++ - 引用初始化无效

java - 如何在java中创建动态二维数组?

c - 连续使用 2 个 fscanf

c - OpenMP 并行 GSL 常微分方程计算

C++ 指针到字符的问题

arrays - "Flattening"元胞数组