- 博客(1)
- 收藏
- 关注
原创 数据结构C语言,顺序表基本函数(不定时补充新算法)
#include<stdio.h> #include<stdlib.h> #define MaxSize 50 typedef int ElemType; typedef struct { ElemType data[MaxSize]; int length; }SqList; void CreateList(SqList *&L,ElemType a[],int n) { int i=0,k=0; L=(SqList *)malloc(sizeof(SqList..
2021-10-25 19:13:34
452
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人
RSS订阅