摘要: cirlinklist.h的重要性: typedef int ElemType ; typedef struct Lnode{ ElemType data; Lnode *next; }LNode; class cirlinklist { private : LNode * head; LNode * curr; ... 阅读全文
posted @ 2009-05-04 21:34 fleetwgx 阅读(1025) 评论(0) 推荐(0) 编辑
摘要: 链式队列代码: 编译分析: 1文件结构: 在初步编写mian #include #include #include #include #include #include"linkqueue.h" void mian () { } 后 编译成功: 接下来就测试一下是不是真的奏效: 接下来出错啦 事实说明,文件之... 阅读全文
posted @ 2009-05-04 09:44 fleetwgx 阅读(401) 评论(0) 推荐(0) 编辑