摘要: //链表:#include using namespace std;//定义结点:struct NODE{ int data;//数据域 NODE *next;//指针域};//链表类:class LIST{ NODE *head;public: //构造函数 LIST... 阅读全文
posted @ 2015-05-20 22:24 M_Kepler 阅读(257) 评论(0) 推荐(0) 编辑