我在c中实现了一个可以从文件中读取的知识树。我在newStr函数中遇到了一个seg错误。我无法用这个问题测试我的其余代码。我对c没有多少经验。任何帮助将不胜感激。
我的.c文件 #包括 #包括 #包括“animal.h” #包括 的#include
/*returns a new node for the given value*/
struct Node * newNode (char *newValue)
{
struct Node * tree;
tree = (struct Node*)malloc(sizeof(struct Node));
tree -> value = newStr(newValue);
return tree;
}
/* returns a new string with value passed as an argument*/
char * newStr (char * charBuffer)
{
int i;
int length = strlen(charBuffer);
char newStr;
if(charBuffer[0] == 'A' || charBuffer[0] == 'Q'){
for(i=1; i<length; i++)
newStr += charBuffer[i];
}
return (newStr + "\0");
}
/*Read from a File and create a tree*/
struct Node * readATree(FILE * f)
{
char c;
char buffer[100];
struct Node * newTree;
c = fgetc(f);
if (c == 'A'){
fgets(buffer, 100, f);
newTree = newNode(buffer);
newTree -> left = NULL;
newTree -> right = NULL;
}
else{
fgets(buffer, 100, f);
newTree = newNode(newStr(buffer));
newTree->left = readATree(f);
newTree->right = (struct Node *) readAtree(f);
}
return newTree;
}
/*Write Tree to a File*/
void writeAFile(struct Node* tree, FILE * f)
{
char buffer[100];
strcpy(buffer, tree->value);
if(tree != 0){
if(tree->left == NULL && tree->right == NULL){
fputc((char)"A", f);
fputs(buffer,f);
} else{
fputc((char)"Q",f);
fputs(buffer,f);
writeAFile(tree->left, f);
writeAFile(tree->right,f);
}
}
}
/*The play should start from here*/
int main (){
struct Node* node;
struct Node* root;
char ans[100];
char q[100];
FILE * f;
f = fopen("animal.txt", "r+");
if(f != NULL)
readATree(f);
else{
node = newNode("Does it meow?");
node->right = NULL;
node->right->right=NULL;
node->left->left=NULL;
node->left=newNode("Cat");
root = node;
}
while(node->left != NULL && node->right != NULL){
printf(node->value);
scanf(ans);
if(ans[0] == (char)"Y" || ans[0] == (char)"y")
node = node->left;
else if(ans[0] == (char)"N" || ans[0] == (char)"n")
node = node->right;
else
printf("That is not a valid input.\n");
}
if(ans[0] == (char)"Y" || ans[0] == (char)"y")
printf("I win!");
else if(ans[0] == (char)"N" || ans[0] == (char)"n"){
printf("What is your animal");
scanf(ans);
printf("Please enter a yes or no question that is true about %s?\n", ans);
scanf(q);
node->right = newNode(q);
node->right->left = newNode(ans);
node->right->right = NULL;
}
writeAFile(root,f);
fclose(f);
return 0;
}
.h文件 的#include
struct Node {
char *value;
struct Node * left;
struct Node * right;
};
struct Node * newNode (char *newValue) ;
char * newStr (char * charBuffer);
struct Node * readATree(FILE * f);
void writeAFile(struct Node* tree, FILE * f);
答案 0 :(得分:3)
可能会有更多,但这里有一些关于错误的点:
你的newStr功能非常好, 非常错误。猜猜你想要的 类似的东西:
char * newStr (char * charBuffer)
{
char *newStr;
if(charBuffer[0] == 'A' || charBuffer[0] == 'Q') {
newStr = strdup(&charBuffer[1]);
} else {
newStr = strdup("");
}
if(newStr == NULL) {
//handle error
}
return newStr;
}
您无法将字符串转换为char 就像你在这里一样:
if(ans[0] == (char)"Y" || ans[0] == (char)"y")
代替(类似代码相同) 在其他地方)
if(ans[0] =='Y' || ans[0] == 'y')
调用putc时与上面相同, 不要做
fputc((char)"A", f);
待办事项
fputc('A', f);
scanf需要格式字符串,不需要 做:
scanf(ans);
例如(或者再次使用fgets)
if(scanf("%99s",ans) != 1) {
//handle error
}
答案 1 :(得分:1)
char * newStr (char * charBuffer)
{
int i;
int length = strlen(charBuffer);
char newStr;
if(charBuffer[0] == 'A' || charBuffer[0] == 'Q'){
for(i=1; i<length; i++)
newStr += charBuffer[i];
}
return (newStr + "\0");
}
嗯,这里有一些有趣的东西......为了解决问题,你试图将字符指针的内容复制到另一个中,而这个函数不会这样做。所有你真正在做的是将charBuffer中每个char的值加到newStr中,因为char实际上只是一个8位整数,然后你通过隐式转换将该整数作为指针返回,因此它现在被视为一个内存地址。
你应该注意使用strdup(),因为这正是函数应该做的事情。无需重新发明轮子。 :)
答案 2 :(得分:0)
“+”运算符作为字符串连接在c。
中不起作用如果您确实要复制字符串,请使用strdup()
。此函数分配内存并将字符串复制到其中。
使用它时不要忘记释放已分配的内存。