我正在使用 C。我有一个主文件,它指向一个头文件。我将把前者称为“主要”,将后者的实现称为“补充”。现在,当我的 Main 文件运行时,它会从我的 Supplement 中调用一个函数。
该函数 malloc 并编辑了一个全局变量(在我的补充文件中)。继续前进,我再次从我的补充文件中调用另一个函数。
现在这就是问题所在,因为每当我这样做时都会收到分段错误。使用 gcc,我发现在我对 Supplement 的第二次函数调用期间,我编辑的全局变量似乎“消失了”(打印显示它位于 0x0 地址并且无法访问。)
我是 C 的新手,我知道全局变量不好,但这是一个赋值,因为我们不能编辑主文件,我只能在我的补充文件中使用一个全局变量来让它“记住”我的 var。
剪切代码:
Main:
// call load
// check
Supplement:
typedef struct node
{
bool is_word;
struct node* children[27];
}node;
//Root Node
static node* root = NULL;
bool check(const char* word)
{
//edits word and puts it into input[i](as int)
for(int i=0;i<x;i++)
{
//uses root[input[i]] -this is the problem. Apparently root is 0x0.
}
}
bool load(const char* dictionary)
{
//mallocs and edits root. Note that it is quite a handful. Do note that in the context of this function, gdb returns seems to know root. It's just on the check function call that it mysteriously disappears.
//current = root
node* cur = root;
root = malloc(sizeof(node));
//Check if opened
if(dict==NULL)
{
return false;
}else
{
int ch = getc(dict);
while(ch!=EOF)
{
//if character is newline
if(ch==10)
{
cur->is_word = true;
cur = root;
dSize++;
}else{
int value = (ch==APOST)? 26 : ch-ASCII;
//if there are no nodes yet
if(cur->children[value]==NULL)
{
//make a new node
node* next = malloc(sizeof(node));
//point children to node
cur->children[value]= next;
//current becomes new node
cur= next;
}else{
//else, use node
cur=cur->children[value];
}
}
ch = getc(dict);
};
return true;
}
}
我实际上是在设置根变量。我不确定为什么我的代码会引起这样的评论。我也通过在 gdb 上打印 root 来确认这一点。唯一的问题是加载完成后,我正在运行检查,root 消失了。提前致谢!