我正在尝试将节点值分配给指针,但是当代码运行时,gdb 给了我分段错误。我能做什么?
void biggerPotion(No* node, int bottleSize, int *aux){
if(node == NULL)
return;
maiorPocao(node>left, bottleSize, aux);
maiorPocao(node->right, bottleSize, aux);
if((node->value >= garra) && (node-> value < *aux))
*aux = node->value; //here is the issue
}
代码的其他相关部分是:
for(i=0; i< nBottles;i++){
a = 1000; //i declared that
biggerPotion(potions,bottleSize[i],&a);
}
好的,因为错误的行是:
*aux = node->value;
那么要么aux
是问题,要么是node
(因为它们是该行上唯一被取消引用的两个指针(。
我会在执行该if
块之前将它们都打印出来,以确保:
fprintf(stderr, "node is %p, aux is %pn", node, aux);
鉴于node
的大量使用和aux
的少量使用,可能是后者导致了问题,在这种情况下,您应该检查传递给biggerPortion
顶级调用的内容。您应该发布该顶级调用,包括要传入的任何变量的声明。
在任何情况下,您都可以通过简单地更改来测试它:
*aux = node->value;
到:
{
int temp = node->value;
}
如果问题消失了,那么肯定是指针aux
以某种方式出错了。确保您确实传递了一个指针,例如:
int myVar;
biggerPotion(rootNodePtr, 42, &myVar);