gpt4 book ai didi

c - 填充一个包含 char** 数组作为成员的结构,C

转载 作者:太空宇宙 更新时间:2023-11-04 00:10:46 25 4
gpt4 key购买 nike

...目前正在练习填充包含数组(用于存储多个元素的字符数组)的结构。我尝试实现的场景如下:

  1. 一般任务是(存储学生信息,姓名为字符串,学生选修的类(class)为列表或字符**)
  2. 首先从文件加载学生信息!(myfile.txt)
  3. 标记/解析学生信息并加载到结构中

包含我的学生信息的文件是:

myfile.txt(每行包含学生姓名和类(class)列表)以“:”分隔

Austin Barbra:Biology,chemistry,maths,music
Romio Chandra:Mechanics,IT,Geology,music,Astronomy
.
.

我的 main.c 是:

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define path "myfile.txt"

typedef struct student_info
{
char *studt_name;
char *cources_as_string;
char **cources_as_list;
}std_info ;

std_info *myinfo; //a global var that will conatain student info
int student_count = 0,cource_count=0;
void load_file()
{
int i,yu,index=0;
char *line =NULL,* token = NULL;
size_t len=0;
FILE *fp;
fp =fopen(path,"r");
if(fp==NULL)
{
perror("FILE OPEN ERROR[IN load_file]: ");
return;
}
if (( myinfo = (struct student_info *) malloc( 2 * sizeof(myinfo) ) ) == NULL)//malloc for 2 students
puts ("malloc fail");
while (getline(&line, &len, fp) != -1 )
{
strtok(line,"\n");
char *token;

token = strtok(line,":");
myinfo[index].studt_name=(char * ) malloc(200 * sizeof(char ) );
strcpy(myinfo[index].studt_name,token);

token = strtok(NULL, ":");
myinfo[index].cources_as_string=(char * ) malloc(200 * sizeof(char ) );
strcpy(myinfo[index].cources_as_string,token);
index++;
}
student_count = index;
fclose(fp);
}
char** return_cource_list(char* cources_string)
{
char *token;
char **cource_list = malloc (sizeof (char *) * 10);
int index = 0;
//course_string is delimited by ",": (eg. Biology,chemistry,maths,music). parse this and add to my char ** variable.
token = strtok(cources_string,",");
cource_list[0]= token;
while (token != NULL)
{
cource_list[index]= token;
token = strtok (NULL, ",");
index++;
}
cource_count = index;
return cource_list;

}
int main()
{
int i,j;
load_file();
for(i=0;i<student_count;i++)
{
printf("============================\n");
printf("NAME: %s >>COURCE_string: %s\n",myinfo[i].studt_name,myinfo[i].cources_as_string);
char ip_list[200];
char** std_cource_list = return_cource_list(myinfo[i].cources_as_string);
for(j=0;j<cource_count;j++)
{
printf("\tCOURCE_list[%d]: %s\n",j,std_cource_list[j]);
//segmentation fault exists here, to copy "std_cource_list[j]" to my struct...(need help here).
strcpy(myinfo[i].cources_as_list[j],std_cource_list[j]);
}
}
}

我面临的问题是填充结构的“char **cources_as_list;”成员。我从内部 for 循环(在 j 上迭代)得到一个 seg_fault。我在我的代码中遗漏了什么吗?

最佳答案

我很快修复了它,这样它就不会崩溃并且输出是正确的,它可以更好(我们可以修复泄漏)但它现在实际上可以打印您的东西。

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

#define path "myfile.txt"

typedef struct student_info {
char *studt_name;
char *cources_as_string;
char **cources_as_list;
} std_info;

std_info *myinfo; //a global var that will conatain student info
int student_count = 0, cource_count = 0;

void load_file() {
int i, yu, index = 0;
char *line = NULL, *token = NULL;
size_t len = 0;
FILE *fp;
fp = fopen(path, "r");
if (fp == NULL) {
perror("FILE OPEN ERROR[IN load_file]: ");
return;
}
if ((myinfo = (struct student_info *) malloc(2 * sizeof(*myinfo))) == NULL)//malloc for 2 students
puts("malloc fail");
while (getline(&line, &len, fp) != -1) {
strtok(line, "\n");
char *token;

token = strtok(line, ":");
myinfo[index].studt_name = malloc(200 * sizeof(char));
strcpy(myinfo[index].studt_name, token);

token = strtok(NULL, ":");
myinfo[index].cources_as_string = malloc(200 * sizeof(char));
strcpy(myinfo[index].cources_as_string, token);
index++;
}
student_count = index;
//fclose(fp);
}

char **return_cource_list(char *cources_string) {
char *token;
char **cource_list = malloc(sizeof(char *) * 10);
int index = 0;
//course_string is delimited by ",": (eg. Biology,chemistry,maths,music). parse this and add to my char ** variable.
token = strtok(cources_string, ",");
cource_list[0] = token;
while (token != NULL) {
cource_list[index] = strdup(token);
token = strtok(NULL, ",");
index++;
}
cource_count = index;
return cource_list;

}

/* returns an array of char*, all of which NULL */
char **alloc_argv(unsigned rows) {
char **matrix = malloc(rows * sizeof(char *));
if (!matrix) abort();

for (unsigned row = 0; row < rows; row++) {
matrix[row] = malloc(rows * sizeof(char *));
matrix[row] = "\0";
if (!matrix[row]) abort();

}
return matrix;
}

int main() {
int i, j;
load_file();
for (i = 0; i < student_count; i++) {
printf("============================\n");
printf("NAME: %s >>COURCE_string: %s\n", myinfo[i].studt_name, myinfo[i].cources_as_string);
char ip_list[200];
char **std_cource_list = return_cource_list(myinfo[i].cources_as_string);
for (j = 0; j < cource_count; j++) {
printf("\tCOURCE_list[%d]: %s\n", j, std_cource_list[j]);
//segmentation fault exists here, to copy "std_cource_list[j]" to my struct...(need help here).


myinfo[i].cources_as_list = alloc_argv(100);
myinfo[i].cources_as_list[j] = malloc(sizeof(char **));
strcpy(myinfo[i].cources_as_list[j], std_cource_list[j]);
}
}
}

输出

============================
NAME: Austin Barbra >>COURCE_string: Biology,chemistry,maths,music
COURCE_list[0]: Biology
COURCE_list[1]: chemistry
COURCE_list[2]: maths
COURCE_list[3]: music
============================
NAME: Romio Chandra >>COURCE_string: Mechanics,IT,Geology,music,Astronomy
COURCE_list[0]: Mechanics
COURCE_list[1]: IT
COURCE_list[2]: Geology
COURCE_list[3]: music
COURCE_list[4]: Astronomy

Process finished with exit code 0

关于c - 填充一个包含 char** 数组作为成员的结构,C,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37363422/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com