摘要://StackNode.h #ifndef _STACKNODE #define _STACKNODE /*StackNode.h*/ #include using namespace std; typedef int ElemType; class StackNode { public: ElemType data; StackN...
阅读全文
posted @ 2009-03-22 11:20
|
|||
随笔分类 - 数据结构
摘要://StackNode.h #ifndef _STACKNODE #define _STACKNODE /*StackNode.h*/ #include using namespace std; typedef int ElemType; class StackNode { public: ElemType data; StackN...
阅读全文
posted @ 2009-03-22 11:20
|
|||