2020年5月22日
摘要: 一、栈 入栈 void push(Stack *S, ElemType e) { S->elem[++S->top] = e; if (S->top>=S->capacity) { S->elem = (ElemType *) realloc(S->elem, (S->capacity+SEGMEN 阅读全文
posted @ 2020-05-22 14:39 今天也超甜呀w 阅读(132) 评论(0) 推荐(0)