2018年7月22日

c语言实现栈的增删查减

摘要: #include"stdio.h"#include"stdlib.h"#define STACK_SIZE 100#define STACKINCREMENT 10typedef struct{int *base;int *top;int stacksize;}Stack;//初始化int Init 阅读全文

posted @ 2018-07-22 16:12 妄想症T 阅读(268) 评论(0) 推荐(0) 编辑

导航