首页
学习
活动
专区
工具
TVP
发布
社区首页 >问答首页 >停留在二维数组上,将指针插入文件中的字符串

停留在二维数组上,将指针插入文件中的字符串
EN

Stack Overflow用户
提问于 2018-06-09 22:26:12
回答 1查看 32关注 0票数 0

编辑:使用纯c++

这部分指的是我的上一个问题,但我现在完全重写了大约3次代码,我陷入了一个主要的泥潭。我读了这么多关于2D数组的不同东西,我感到困惑,因为我认为什么是正确的,其他堆栈溢出帖子更让我困惑:(

例如:

代码语言:javascript
复制
char array[A][B];

一些消息来源说A是nr。字段的长度,B表示一个字段的长度,而其他人则说A是nr。行的数量,B表示nr。矩阵的列数。其他人说,这只节省了单个字符。

继续我的问题:

我正在写一个测验,我有一个数据库文件,其中的每一行都是这样的:

代码语言:javascript
复制
Multiple Words A#Multiple Words B#Multiple Words C

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

代码语言:javascript
复制
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

这些行应该像这样拆分:

代码语言:javascript
复制
Multiple Words A => frageinhalt
Multiple Words B => antw1
Multiple Words C => antw2

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

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

代码语言:javascript
复制
printf("%s,%s,%s",frageinhalt[0],antw1[0],antw2[0]);

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

下面是完整的代码。

代码语言:javascript
复制
#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);
  }

}
EN

回答 1

Stack Overflow用户

回答已采纳

发布于 2018-06-10 03:20:36

以下是建议的代码:

使用有意义的names

  • eliminates不使用/不需要的局部变量和不需要的逻辑干净地compiles

  • performs OPs隐含的functionality

  • replaces (大多数)
  1. 格式化代码以便于阅读,并将错误消息(以及操作系统认为发生错误的原因)输出到
    1. 声明不接收任何参数的子函数的原型

现在,建议的代码如下:

代码语言:javascript
复制
#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);
}
票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/50775278

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档