//链栈结点个数int Stacksize(SeqStack S){ int n=0; SeqStack p=S; while(p) { n++; p=p->next; } return n;}
收起
报告相同问题?