摘要: 用C语言的方式实现栈: #include <stdio.h> #include<stdlib.h> #include<assert.h> struct Link { int data; struct Link* next; }; struct Stack { struct Link* head; i 阅读全文
posted @ 2016-07-19 08:42 walanwalan 阅读(157) 评论(0) 推荐(0) 编辑