文件名称:数据结构 链表 队列 堆栈
文件大小:4KB
文件格式:CPP
更新时间:2012-07-17 14:27:13
数据结构 链表 队列 堆栈
完整代码 正确产生结果 三个类分开写 class linklist { protected: struct node { int data; node *next; }; node *head; int length; public:
文件名称:数据结构 链表 队列 堆栈
文件大小:4KB
文件格式:CPP
更新时间:2012-07-17 14:27:13
数据结构 链表 队列 堆栈
完整代码 正确产生结果 三个类分开写 class linklist { protected: struct node { int data; node *next; }; node *head; int length; public: