顺序表的静态存储

顺序表:用一段地址连续的存储单元依次存储数据元素的线性结构。算法 test.h数组 #pragma once #include <stdio.h> #include <string.h> #include <assert.h> #define MAX_SIZE 10 typedef int DataType; typedef struct Seqlist { DataType array[
相关文章
相关标签/搜索