0

我正在尝试使用教科书作者给我的代码编写程序,但是在尝试编译使用该文件的程序时,每种方法都出现“取消引用指向不完整类型的指针”错误。下面是代码。有谁知道我如何修复这个作者的代码以使其正常工作?

#include <stdio.h>
#include <stdlib.h>
#include "StackADT.h"
#define STACK_SIZE 100

struct stackType {
    int contents[STACK_SIZE];
    int top;
};

static void terminate(const char *message) {
    printf("%s\n", message);
    exit(EXIT_FAILURE);
}

Stack create(void) {
    Stack s = malloc(sizeof(struct stackType));

    if (s == NULL) {
        terminate("Error: Stack could not be created");
    }

    s->top = 0;
    return s;
}

void destroy(Stack s) {
    free(s);
}

void makeEmpty(Stack s) {
    s->top = 0;
}

bool isEmpty(Stack s) {
    return s->top == 0;
}

bool isFull(Stack s) {
    return s->top == STACK_SIZE;
}

void push(Stack s, Item i) {
    if (isFull(s)) {
        terminate("Error: Stack is full");
    }

    s->contents[s->top++] = i;
}

int pop(Stack s) {
    if (isEmpty(s)) {
        terminate("Error: Stack is empty");
    }

    return s->contents[--s->top];
}

错误:

StackADT.c: In function 'create':
StackADT.c:29: error: dereferencing pointer to incomplete type
StackADT.c: In function 'makeEmpty':
StackADT.c:38: error: dereferencing pointer to incomplete type
StackADT.c: In function 'isEmpty':
StackADT.c:42: error: dereferencing pointer to incomplete type
StackADT.c: In function 'isFull':
StackADT.c:46: error: dereferencing pointer to incomplete type
StackADT.c: In function 'push':
StackADT.c:54: error: dereferencing pointer to incomplete type
StackADT.c:54: error: dereferencing pointer to incomplete type
StackADT.c: In function 'pop':
StackADT.c:62: error: dereferencing pointer to incomplete type
StackADT.c:62: error: dereferencing pointer to incomplete type
4

2 回答 2

1

尝试在typedef struct stackType *Stack;第一个函数定义之前挤进去,看看是否能解决它。

于 2012-11-25T06:31:44.537 回答
1

您正在使用先前声明的指针类型Stack作为struct stackType *. 实际上Stack与 没有关系struct stackType *。你Stack被声明为 的同义词SomeOtherType *,其中SomeOtherType是一些不完整的类型。

你的Stack声明在哪里?它说什么?

于 2012-11-25T06:46:58.440 回答