摘要: 王道P39T17 主代码: 完整代码: #include <cstdio> #include <stdlib.h> using namespace std; typedef struct DNode{ int data; struct DNode* next=NULL; struct DNode* 阅读全文
posted @ 2018-02-17 19:12 TQCAI 阅读(855) 评论(0) 推荐(0) 编辑
摘要: 王道P38T16 代码: 主代码: #include <cstdio> #include <stdlib.h> using namespace std; typedef struct LNode{ int data; struct LNode* next=NULL; LNode(int x=0){ 阅读全文
posted @ 2018-02-17 18:24 TQCAI 阅读(1195) 评论(0) 推荐(0) 编辑
摘要: 王道P38T14 主代码: 完整代码: #include <cstdio> #include <stdlib.h> using namespace std; typedef struct LNode{ int data; struct LNode* next=NULL; LNode(){ } LNo 阅读全文
posted @ 2018-02-17 17:48 TQCAI 阅读(404) 评论(0) 推荐(0) 编辑
摘要: 王道P38T13 主代码: 完整代码: #include <cstdio> #include <stdlib.h> using namespace std; typedef struct LNode{ int data; struct LNode* next=NULL; LNode(){ } LNo 阅读全文
posted @ 2018-02-17 16:26 TQCAI 阅读(1522) 评论(0) 推荐(0) 编辑
摘要: 王道P37T12 主代码: 完整代码: #include <cstdio> #include <stdlib.h> using namespace std; typedef struct LNode{ int data; struct LNode* next=NULL; LNode(){ } LNo 阅读全文
posted @ 2018-02-17 15:53 TQCAI 阅读(348) 评论(0) 推荐(0) 编辑