- 博客(1)
- 收藏
- 关注
原创 数据结构(一)顺序表
标题实现顺序表的基本功能 /* 实现顺序表的基本功能代码 */ #include<stdio.h> // 结构体的定义 typedef char Etype; #define MAX 50 typedef struct{ Etype data[MAX]; int length; }sqList; // 函数的定义 // 获取线性表长度 int getLength(sqList L) { return L.length; } // 插入元素 voi
2021-01-22 19:19:32
50
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人
RSS订阅