摘要: #include #include #define Max1 10 #define Max2 6 struct List { int Number; struct List *Next; }; typedef struct List Node; typedef Node *Link; int Data1[Max1] = { 1, 2, 3... 阅读全文
posted @ 2018-07-25 16:23 lifeless_faultless 阅读(238) 评论(0) 推荐(0) 编辑
摘要: #include #include #define Max 10 struct List { int Number; int Total; struct List *Next; }; typedef struct List Node; typedef Node *Link; int Data[2][Max] = { 1, 3, 5, 7, ... 阅读全文
posted @ 2018-07-25 00:28 lifeless_faultless 阅读(176) 评论(0) 推荐(0) 编辑
摘要: #include #include #define Max 10 struct List { int Number; int Total; struct List *Next; }; typedef struct List Node; typedef Node *Link; int Data[2][Max] = { 1, 3, 5, 7, 2, ... 阅读全文
posted @ 2018-07-24 23:23 lifeless_faultless 阅读(135) 评论(0) 推荐(0) 编辑
摘要: #include #include #define Max 10 struct List { int Number; int Total; struct List *Next; }; typedef struct List Node; typedef Node *Link; int Data[2][Max] = { 1, 3, ... 阅读全文
posted @ 2018-07-24 22:30 lifeless_faultless 阅读(198) 评论(0) 推荐(0) 编辑
摘要: #include #include #define Max 10 struct List { int Number; int Total; struct List *Next; }; typedef struct List Node; typedef Node *Link; int Data[2... 阅读全文
posted @ 2018-07-24 00:18 lifeless_faultless 阅读(195) 评论(0) 推荐(0) 编辑
摘要: #include #include #define Max 10 struct List { int Number; char Name[Max]; struct List *Next; }; typedef struct List Node; typedef Node *Link; void Free_List(Lin... 阅读全文
posted @ 2018-07-23 23:12 lifeless_faultless 阅读(131) 评论(0) 推荐(0) 编辑
摘要: #include #include #define Max 10 struct List { int Number; char Name[Max]; struct List *Next; }; typedef struct List Node; typedef Node *Link; void main(void) { ... 阅读全文
posted @ 2018-07-12 18:35 lifeless_faultless 阅读(173) 评论(0) 推荐(0) 编辑
摘要: #include #include void main(void) { int Lower[5][5] = { 3, 0, 0, 0, 0, 7, 5, 0, 0, 0, 6, 4, 5, 0, 0, 8, 3, 2, 1, 0, ... 阅读全文
posted @ 2018-07-11 19:26 lifeless_faultless 阅读(115) 评论(0) 推荐(0) 编辑
摘要: #include #include void main(void) { int Lower[5][5] = { 3, 0, 0, 0, 0, 7, 5, 0, 0, 0, 6, 4, 5, 0, 0, 8, 3, 2, 1, 0, ... 阅读全文
posted @ 2018-07-11 19:21 lifeless_faultless 阅读(109) 评论(0) 推荐(0) 编辑
摘要: #include #include void main(void) { int Upper[5][5] = { 3, 9, 1, 4, 7, 0, 5, 2, 5, 8, 0, 0, 5, 2, 4, 0, 0, 0, 1, 7, ... 阅读全文
posted @ 2018-07-11 17:17 lifeless_faultless 阅读(158) 评论(0) 推荐(0) 编辑