摘要: //list.cpp#include "list.h"#include #include void initList(List *list) { list->first = NULL;}void destroyList(List *list) { Element *e = list->f... 阅读全文
posted @ 2015-03-02 21:02 lishuai0214 阅读(228) 评论(0) 推荐(0) 编辑