摘要: 1 头文件Stack.h 1 #ifndef STACK_H 2 #define STACK_H 3 4 struct Stack 5 { 6 7 struct Link 8 { 9 void* data;10 Link* next;11 ... 阅读全文
posted @ 2015-06-08 15:20 asnjudy 阅读(646) 评论(0) 推荐(0) 编辑