摘要: 仅仅实现了基本的链表操作,如创建、查找、删除、排序等。//头文件/*there is no head node exist * */#include using namespace std;typedef struct Node{ int value; struct Node* next;}... 阅读全文
posted @ 2015-06-14 16:39 朱传林 阅读(174) 评论(0) 推荐(0)