2021年6月14日
摘要: #include <stdio.h>#include <stdlib.h>#define InitSize 10 typedef int ElemType;typedef struct{ int *data; int MaxSize; int length;}SqList; void InitLis 阅读全文
posted @ 2021-06-14 21:08 upupup-999 阅读(320) 评论(0) 推荐(0)
摘要: #include <stdio.h>#define MaxSize 10typedef int ElemType;typedef struct{ int data[10]; int length;}SqList; void InitList(SqList &L){ for(int i=0;i<Max 阅读全文
posted @ 2021-06-14 20:04 upupup-999 阅读(62) 评论(0) 推荐(0)
摘要: #include <stdio.h>#define MaxSize 10typedef int ElemType;typedef struct{ int data[10]; int length;}SqList; void InitList(SqList &L){ for(int i=0;i<Max 阅读全文
posted @ 2021-06-14 18:36 upupup-999 阅读(259) 评论(0) 推荐(0)
摘要: #include <stdio.h>#include <stdlib.h>#define InitSize 10 typedef int ElemType;typedef struct{ int *data; int MaxSize; int length;}SqList; void InitLis 阅读全文
posted @ 2021-06-14 17:36 upupup-999 阅读(85) 评论(0) 推荐(0)
摘要: #include <stdio.h>#define MaxSize 10typedef int ElemType;typedef struct{ int data[10]; int length;}SqList; void InitList(SqList &L){ for(int i=0;i<Max 阅读全文
posted @ 2021-06-14 17:35 upupup-999 阅读(69) 评论(0) 推荐(0)