摘要: 实现方式一# include # include typedef char NodeData;//链栈typedef struct Node{ NodeData data; struct Node *next;}StackNode;typedef struct... 阅读全文
posted @ 2007-04-22 16:11 xiejava 阅读(35) 评论(0) 推荐(0)