2018年1月26日

静态栈抽象数据类型stack实现

摘要: #include#include#include#define MAX_STACK_SIZE 10 //堆栈的最大大小typedef struct{ int key; //其他内容}Element;//模板类型void push( Element item, Elem... 阅读全文

posted @ 2018-01-26 21:55 MACHINE_001 阅读(121) 评论(0) 推荐(0) 编辑

导航