收起
【相关推荐】
typedef int SDataType; typedef struct Stack { SDataType* array; int capacity; //栈的容量 int top; //栈的元素个数 }Stack;
报告相同问题?