摘要: #include #include #include #include #include #include using namespace std; typedef struct LNode{ int data; struct LNode *next,*prior; }LNode,*LinkList; //头插法 (顺序与输入顺序相反) void CreatList1(... 阅读全文
posted @ 2016-07-26 08:52 咸咸的告别 阅读(272) 评论(1) 推荐(1) 编辑