主题:请教一下
void JoinStack(SqStackTp *sq,Node x)
{
if(*sq->top==MAXLINE) //为什么这里它报错勒?
//invalid type argument of 'unary *' 这个错误
{
printf("The Stack is empty now!error");
exit(1);
getch();
}
*sq->data[*sq->top] = x;
*sq->top++;
}
为什么呀?
{
if(*sq->top==MAXLINE) //为什么这里它报错勒?
//invalid type argument of 'unary *' 这个错误
{
printf("The Stack is empty now!error");
exit(1);
getch();
}
*sq->data[*sq->top] = x;
*sq->top++;
}
为什么呀?