使用指向指针 C++ 的指针时出现分段错误

Posted

技术标签:

【中文标题】使用指向指针 C++ 的指针时出现分段错误【英文标题】:segmentation fault when using pointer to pointer C++ 【发布时间】:2015-11-09 20:29:49 【问题描述】:

我一直在尝试使用指向指针的指针来执行类似于树中的中序遍历的操作。这是我的代码

struct node 
    char c = '\0';
    int freq = 0;
    node *left = NULL;
    node *right = NULL;
    string code = "";
;

void appendones(node **n) 
    if ((*n) == NULL)
        ;
    else 
        (*n)->code += "1";
        appendones(&(*n)->left);
        appendones(&(*n)->right);
    


void combinenodes(node *a, node *b, node **n) 
    appendones(&a);
    appendones(&b);
    //(*n)=newNode('\0',a->freq+b->freq);
    (*n)->c = '\0';
    (*n)->freq = a->freq + b->freq;
    (*n)->left = a;
    (*n)->right = b;


int main() 
    N = input();
    priority_queue<node, vector<node *>, compareNodefreq> nodefreq; // function object
    for (int i = 0; i < N; i++) 
        char s;
        int freq;

        cin >> s >> freq;
        node *n = newNode(s, freq);
        nodefreq.push(n);
    

    // printheap(nodefreq);

    // perform combining nodes based on frequencies
    while (nodefreq.size() > 1) 
        node *a = nodefreq.top();
        nodefreq.pop();
        node *b = nodefreq.top();
        nodefreq.pop();

        node *n;
        combinenodes(a, b, &n);
        nodefreq.push(n);
    

我在(*n)-&gt;code+="1"; 中遇到appendone() 的分段错误。

我无法找出错误。我的理解是我正在路过 引用指针并执行appendzero()appendone(), 所以我想那部分没有错误。还有我的ab combinenodes() 不能为空,因为我正在从堆栈中弹出。

你能帮我弄清楚吗?

【问题讨论】:

请修正您的格式并将代码修剪为minimal reproducible example。 并尝试自己调试代码。这类错误通常很容易被调试器检测到。 @BaummitAugen,已修复,现在可以帮忙吗? 您能发布完整的确切段错误消息吗?还有newNode()? 使用调试器并阅读关于 C++ 的 book。不给你new 【参考方案1】:

哦,我明白了。在main()while 循环中,n 被推送并稍后使用,但由于节点对象本身从未在combinenodes() 中分配(当前已注释掉)而无效。那么,指针值是未定义的,但在这种情况下,结果是非零,从而破坏了安全检查。

【讨论】:

这可能不是唯一的问题。队列声明本身似乎在恳求清白的终结……paste.ubuntu.com/13211286 确实如此。在您所指的 TODO 旁边,提到了 node*,而上面的代码使用了 node。不过,我对priority_queue 类型并不熟悉,并且执行已通过推动到达段错误。 OP 的回复会很有趣。

以上是关于使用指向指针 C++ 的指针时出现分段错误的主要内容,如果未能解决你的问题,请参考以下文章

在 C++ 中使用指针的数组:访问返回的数组时出现分段错误

添加指向数组的指针时出现分段错误

删除时出现分段错误

尝试使用指向 char* 的指针时出现总线错误 10 或分段错误 11,具体取决于封装

尝试从方法返回指向对象的指针时出现分段错误

返回指针时出现分段错误[关闭]