摘要: #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) 编辑