摘要: 1 /* 双向循环链表c++版 */ 2 /* Gxjun coder */ 3 #include 4 #define type int // 5 using namespace std; 6 7 typedef struct Node 8 { 9 type inf; // 10 struct Node* pre ; // 11 struct Node* next ; // 12 }node ; 13 14 /*创建,插入,删除,打印*/ 15 16 void c... 阅读全文
posted @ 2014-02-27 21:01 龚细军 阅读(261) 评论(0) 推荐(0)