摘要: //链表线性存储#includeusing namespace std;class Date{public: int date; Date*next;};void show(Date*head); //显示函数Date*creat(); ... 阅读全文
posted @ 2015-04-06 23:45 曹孟德 阅读(296) 评论(0) 推荐(0) 编辑