2015年10月30日

线性栈

摘要: 敲了下线性栈实现的代码,有必要保存起来#include #define MAX_STACK_SIZE 100typedef int ElemType;typedef struct{ ElemType stack_array[MAX_STACK_SIZE]; int top;}SqStac... 阅读全文

posted @ 2015-10-30 13:29 张明明_1 阅读(467) 评论(0) 推荐(0)

导航