关于C语言将栈置空的问题
Status ClearStack(SqStack *S)
{ /* 把S置为空栈 */
(*S).top=(*S).base;
return OK;
}
/*我觉得*/
Status ClearStack(SqStack *S)
{ /* 把S置为空栈 */
free(s->base);
(*S).top=(*S).base;
return OK;
}
麻烦帮忙解释一下,谢谢!!!