摘要: 根据老师的代码进行改编 #include<iostream> #include<cstdlib> using namespace std; #define OK 1 #define ERROR 0 #define OVERFLOW -2 #define MAXSIZE 100 typedef int 阅读全文
posted @ 2015-05-22 18:36 wojiaohuangyu 阅读(11) 评论(0) 推荐(0)
摘要: 链表的基本操作。 #include<iostream> #include<cstring> #define OK 1 #define ERROR 0 #define OVERFLOW -2 using namespace std; typedef int ElemType; typedef int 阅读全文
posted @ 2015-05-22 17:14 wojiaohuangyu 阅读(15) 评论(0) 推荐(0)