王道數據結構:順序表上基本操做的實現(C語言版)

順序表的定義: 線性表的順序存儲又稱順序表,順序表有隨機存儲的優勢,但對於插入刪除操做須要移動大量的元素。sql #include <stdio.h> #include <stdlib.h> #include <math.h> #include <string.h> #define MaxSize 10 //順序表定義 typedef struct { int data[MaxSize]
相關文章
相關標籤/搜索