王道数据结构:顺序表上基本操做的实现(C语言版)

顺序表的定义: 线性表的顺序存储又称顺序表,顺序表有随机存储的优势,但对于插入删除操做须要移动大量的元素。sql #include <stdio.h> #include <stdlib.h> #include <math.h> #include <string.h> #define MaxSize 10 //顺序表定义 typedef struct { int data[MaxSize]
相关文章
相关标签/搜索