代码中的两个警告意味着使用链表实现堆栈

时间:2012-04-25 23:10:21

标签: c

我有三个文件:stack2.h,stack2.c和main.c.

stack2.h包含:

/* Define linked list structure */
typedef struct node {
    int val;
    struct Node *next;
} Node, *pNode;

/* Define stack structure */
typedef struct StackType {
    pNode top;
} Stack, *pStack;

/* Declare functions */
pStack InitStack( );

int IsEmpty( pStack pS );
int Pop( pStack pS );

void Push( pStack pS, int val );
void KillStack( pStack pS );

stack2.c包含

pStack InitStack( ) {

    /* Declare variables */
    pStack pS = (pStack)malloc( sizeof(Stack) );

    /* Set first node to NULL */
    pS -> top = NULL;

    /* Return pointer to stack */
    return pS;

}

int IsEmpty( pStack pS ) {

    return ( pS->top == NULL );

}

int Pop( pStack pS ) {

    /* Declare variables */
    int ret = 0;
    pNode temp = NULL;

    /* Check if stack is empty */
   if( IsEmpty( pS ) ) {
        printf( "[ERROR] Pop operation on an empty stack.\n" );
        exit( 1 );
    }

    /* Find return value (last in) */
    ret = pS->top->val;
    temp = pS->top;

    /* Delete and kill node */
    pS->top = pS->top->next;
    free( temp );

    /* Return */
    return ret;

}

void Push( pStack pS, int val ) {

    /* Allocate memory for new node */
    pNode nnew = (pNode)malloc( sizeof(Node) );

    /* Initiate node */
    nnew->next = pS->top;
    nnew->val = val;

    /* Set structure's top to new node */
    pS -> top = nnew;

}

我不会给你带来什么main.c包含的负担。从本质上讲,它包含正确的库和文件,并简单地推送和弹出一些值。我收到这些警告:

assignment from incompatible pointer types

这两行:

    nnew->next = pS->top;
    pS->top = pS->top->next;

我有点困惑。 nnew是指向节点的指针,因此nnew-> next也是指向节点的指针。 pS是指向堆栈的指针,因此pS-> top也是指向节点的指针。我不明白这些是不相容的!

这里发生了什么?谢谢!

1 个答案:

答案 0 :(得分:4)

typedef struct node {
    int val;
    struct Node *next;
} Node, *pNode;

您声明struct node但在其中使用struct Node *; C区分大小写,因此指针是同一类型。 C,也许不幸的是,只要您不取消引用它们(它是用于“不透明指针”的习惯用法),很高兴让你操纵指向未知struct类型的指针,所以你得到的唯一警告就是指针类型不匹配。