- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
该代码旨在从 CSV 文件(以逗号分隔)中读取每一行,然后将每一行作为值插入二叉树中。
#include <stdio.h>
#include <stdlib.h>
#include <assert.h>
#include <string.h>
#define MAX_CHAR 128
#define MAX_LINE 512
#define COMMA ","
typedef struct node node_t;
typedef struct {
node_t *root;
int (*cmp)(void *, void *);
} tree_t;
typedef struct {
char id[MAX_CHAR];
char sex[MAX_CHAR];
char age[MAX_CHAR];
char height[MAX_CHAR];
char weight[MAX_CHAR];
char team[MAX_CHAR];
char noc[MAX_CHAR];
char games[MAX_CHAR];
char year[MAX_CHAR];
char season[MAX_CHAR];
char city[MAX_CHAR];
char sport[MAX_CHAR];
char event[MAX_CHAR];
char medal[MAX_CHAR];
} data_t;
typedef struct {
char *name;
data_t data;
} athlete_t;
struct node {
athlete_t *data;
node_t *left;
node_t *right;
};
tree_t *make_empty_tree(int func(void *, void *));
void insert_to_struct(athlete_t *, char *);
tree_t *read_file(char*, tree_t *);
int cmp(void *p1, void *p2);
tree_t *insert_in_order(tree_t *, athlete_t *);
node_t *recursive_insert(node_t *, node_t *, int cmp(void *, void *));
void traverse_tree(tree_t *, void action(void *));
void recursive_traverse(node_t *, void action(void *));
void action(void *);
void ini_struct(athlete_t *);
int main(int argc, char **argv) {
tree_t *tree = make_empty_tree(cmp);
tree = read_file(argv[1], tree);
printf("%s\n", tree->root->data->name);
traverse_tree(tree, action);
return 0;
}
/* Read each line from a file, and assume max length of line is 512 chars*/
tree_t *read_file(char *filename, tree_t *tree) {
FILE *fp_data;
char new_line[MAX_LINE];
athlete_t *data_struct;
fp_data = fopen(filename, "r");
if (fp_data == NULL) {
fprintf(stderr, "Cannot open %s\n", filename);
exit(EXIT_FAILURE);
}
while (fgets(new_line, MAX_LINE, fp_data) != NULL) {
data_struct = (athlete_t *)malloc(sizeof(*data_struct));
ini_struct(data_struct);
insert_to_struct(data_struct, new_line);
tree = insert_in_order(tree, data_struct);
printf("%s\n", new_line);
}
printf("%s \n", new_line);
fclose(fp_data);
return tree;
}
/* initialize the struct */
void ini_struct(athlete_t *data_struct) {
strcpy(data_struct->data.id, "");
strcpy(data_struct->name, "");
strcpy(data_struct->data.sex, "");
strcpy(data_struct->data.age, "");
strcpy(data_struct->data.height, "");
strcpy(data_struct->data.weight, "");
strcpy(data_struct->data.team, "");
strcpy(data_struct->data.noc, "");
strcpy(data_struct->data.games, "");
strcpy(data_struct->data.year, "");
strcpy(data_struct->data.season, "");
strcpy(data_struct->data.city, "");
strcpy(data_struct->data.sport, "");
strcpy(data_struct->data.event, "");
strcpy(data_struct->data.medal, "");
}
/* make a empty tree */
tree_t *make_empty_tree(int func(void *, void *)) {
tree_t *tree;
tree = (tree_t *)malloc(sizeof(*tree));
assert(tree != NULL);
tree->root = NULL;
tree->cmp = func;
return tree;
}
/* insert each value separated by comma into the struct we define */
void insert_to_struct(athlete_t *data_struct, char *new_line) {
sscanf(new_line, \
"%[^,],%[^,],%[^,],%[^,],%[^,],%[^,],%[^,],%[^,],%[^,],%[^,],%[^,],%[^,],%[^,],%[^,],%[^,]", \
data_struct->data.id, data_struct->name, data_struct->data.sex, \
data_struct->data.age, data_struct->data.height,\
data_struct->data.weight,data_struct->data.team, \
data_struct->data.noc, data_struct->data.games, \
data_struct->data.year, data_struct->data.season, \
data_struct->data.city, data_struct->data.sport, \
data_struct->data.event, data_struct->data.medal);
}
int cmp(void *p1, void *p2) {
char *s1 = (char *)p1;
char *s2 = (char *)p2;
return strcmp(s1, s2);
}
/* insert the struct into the tree */
tree_t *insert_in_order(tree_t *tree, athlete_t *value) {
node_t *new;
new = malloc(sizeof(node_t));
assert(new != NULL);
new->data = value;
new->left = new->right = NULL;
tree->root = recursive_insert(tree->root, new, tree->cmp);
return tree;
}
node_t *recursive_insert(node_t *root, node_t *new, int cmp(void*, void*)) {
if (root == NULL) {
return new;
} else if (cmp(new->data->name, root->data->name) <= 0) {
root->left = recursive_insert(root->left, new, cmp);
} else {
root->right = recursive_insert(root->right, new, cmp);
}
return root;
}
void recursive_traverse(node_t *root, void action(void *)) {
if (root != NULL) {
recursive_traverse(root->left, action);
action(root->data->name);
recursive_traverse(root->right, action);
}
}
void traverse_tree(tree_t *tree, void action(void *)) {
assert(tree != NULL);
recursive_traverse(tree->root, action);
}
void action(void *p1) {
printf("%s\n", (char*)p1);
}
棘手的事情发生在 make_empty_tree
函数中,当我使用 malloc
创建一个名为 new 的指针时,但在调试时它不起作用,但我认为它应该有效!
最佳答案
当你分配一个新的结构node_t
时,它的成员name
是一个未初始化的指针,不能通过ini_struct()
用初始化>strcpy(data_struct->name, "");
这具有未定义的行为,并且在 insert_to_struct()
中也出现同样的问题。一个简单的解决方案是将 name
定义为 char
数组,就像 data
的成员一样:
typedef struct {
char name[MAX_STR];
data_t data;
} athlete_t;
另请注意,函数 insert_to_struct
不需要行继续符 \
。它将更具可读性:
/* insert each value separated by comma into the struct we define */
void insert_to_struct(athlete_t *data_struct, char *new_line) {
sscanf(new_line,
"%[^,],%[^,],%[^,],%[^,],%[^,],"
"%[^,],%[^,],%[^,],%[^,],%[^,],"
"%[^,],%[^,],%[^,],%[^,],%[^,]",
data_struct->data.id, data_struct->name,
data_struct->data.sex,
data_struct->data.age, data_struct->data.height,
data_struct->data.weight,data_struct->data.team,
data_struct->data.noc, data_struct->data.games,
data_struct->data.year, data_struct->data.season,
data_struct->data.city, data_struct->data.sport,
data_struct->data.event, data_struct->data.medal);
}
请注意,如何通过在不使用运算符的情况下将字符串常量一个接一个地写入来将字符串常量分解为更小的 block 。编译会自动将这些字符串粘合成单个文字。
此外,指定要存储到每个目标数组中的最大字符数并验证 15 个字段是否已正确解析会更安全:
/* insert each value separated by comma into the struct we define */
int insert_to_struct(athlete_t *data_struct, char *new_line) {
return sscanf(new_line,
"%127[^,],%127[^,],%127[^,],%127[^,],%127[^,],"
"%127[^,],%127[^,],%127[^,],%127[^,],%127[^,],"
"%127[^,],%127[^,],%127[^,],%127[^,],%127[^,]",
data_struct->data.id, data_struct->name,
data_struct->data.sex,
data_struct->data.age, data_struct->data.height,
data_struct->data.weight,data_struct->data.team,
data_struct->data.noc, data_struct->data.games,
data_struct->data.year, data_struct->data.season,
data_struct->data.city, data_struct->data.sport,
data_struct->data.event, data_struct->data.medal) == 15;
}
另请注意,这个基本解析器不处理引号字符串、嵌入引号和/或逗号的字符串,也不接受空字段。需要手动编码的解析器才能正确读取文件。
关于c - SOS 我疯了,但还没找到 137 线不起作用的原因,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52079579/
我对cassandra并使用1.2.10非常陌生。我有一个时间戳数据类型的主键列。现在,我正在尝试检索日期范围的数据。由于我们知道不能在cassandra中使用,因此我使用的是大于()来获取日期范围。
我正在尝试进行有条件的转场。但我得到: Terminating app due to uncaught exception 'NSInvalidArgumentException', reas
我有一个游戏项目,在调试和发布模式下在设备上运行得非常好。我有两个版本。旧版本和新版本具有更多(后来我添加了)功能,并且两者的 bundle ID、版本相同。当我构建旧版本时,之前没有安装“myGam
这个问题已经有答案了: 奥 git _a (2 个回答) 已关闭 5 年前。 我正在获取 ClassCastException 。这两个类来自不同的 jar,但是JettyContinuationPr
以下代码行抛出异常: HttpResponse response = client.execute(request); // actual HTTP request 我能够捕获它并打印: Log
就目前情况而言,这个问题不太适合我们的问答形式。我们希望答案得到事实、引用资料或专业知识的支持,但这个问题可能会引发辩论、争论、民意调查或扩展讨论。如果您觉得这个问题可以改进并可能重新开放,visit
public class TwoThreads { private static Object resource = new Object(); private static void
当我输入 6 (int) 作为值时,运行此命令会出现段错误 (gcc filename.c -lm)。请帮助我解决这个问题。预期的功能尚未实现,但我需要知道为什么我已经陷入段错误。 谢谢! #incl
所以,过去一周半我一直在研究这个 .OBJ/.MTL 网格解析器。在这段时间里,我一直在追踪/修复很多错误、清理代码、记录代码等等。 问题是,每修复一个错误,仍然会出现这个问题,而且一张图片胜过一千个
我正在运行一个代码,它基本上围绕 3 个维度旋转一个大数据数组(5000 万行)。但是,我遇到了一个奇怪的问题,我已将其缩小到如何评估旋转矩阵。基本上,对于除绕 x 轴以外的任何旋转,python 代
就在你说这是重复之前,我已经看到了其他问题,但我仍然想发布这个。 所以我正在阅读 Thinking in Java -Bruce Eckel 这篇文章是关于小写命名约定的: In Java 1.0 a
我想在我的应用程序中使用 REST API。它为我从这个应用程序发出的所有请求抛出 SocketTimeoutException。 Logcat 输出:(您也可以在此处看到带有漂亮格式的输出:http
我知道 raise ... from None 并已阅读 How can I more easily suppress previous exceptions when I raise my own
在未能找到各种Unix工具(例如xargs和whatnot)的最新独立二进制文件(this version很好,但需要外部DLL)后,我承担了自己进行编译的挑战。 ...这是痛苦的。 最终,尽管如此,
我有一个用PHP编写的流套接字服务器。 为了查看一次可以处理多少个连接,我用C语言编写了一个模拟器来创建1000个不同的客户端以连接到服务器。 stream_socket_accept几次返回fals
我的Android Studio昨天运行良好,但是今天当我启动Android Studio并想在移动设备上运行应用程序时,发生了以下错误, 我在互联网和stackoverflow上进行了搜索,但没有解
默认情况下,grails似乎为Java域对象的toString()返回:。那当然不是我想要的,所以我尝试@Override toString()返回我想要的。当我尝试grails generate-a
尝试通过LDAP通过LDAP对用户进行身份验证时,出现以下错误。 Reason: Cannot pass null or empty values to constructor. 谁能告诉我做错了什么
我正在尝试使用应用程序附带的 Houdini Python 模块,该模块是 Houdini 安装文件夹的一部分,位于标准 Python 路径之外。按照安装说明操作后,运行 Houdini Termin
简单地说,我正在为基本数据库编写单链表的原始实现。当用户请求打印索引下列出的元素高于数据库中当前记录数量时,我不断出现段错误,但仅当差值为 1 时。对于更高的数字,它只会触发我在那里编写的错误系统。
我是一名优秀的程序员,十分优秀!