我的代码是如何产生分段错误的?
我想保留TOS作为双指针。

#include<stdio.h>
#include<stdlib.h>

typedef struct node_tag{
    int num;
    struct node_tag* next;
}NODE;

void push(int x, NODE **TOS){
    NODE* temp = (NODE*) malloc(sizeof(NODE));
    temp->num = x;
    temp->next = (*TOS);
    (*TOS) = temp;
}

int main(){
    NODE **TOS = NULL, *temp;
    printf("<<<Stack Push>>>\n");
    push(0, TOS);
    printf("%i\n", (*TOS)->num);
}

最佳答案

你需要这样使用它;

int main(){
    NODE *TOS = NULL, *temp;
    printf("<<<Stack Push>>>\n");
    push(0, &TOS);
    printf("%i\n", TOS->num);
}

关于c - 为什么堆栈推送会导致段错误?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/50120309/

10-09 08:48