【c语言】数据结构—动态储存顺序表的扩容、合并(源代码)

#include <stdio.h> #include <stdlib.h> #include <string.h> #include <assert.h> #define MAXSIZE 3 //结构体定义 typedef int elemtype; typedef struct sqList{ elemtype *data; int size; //当前长度 int capac
相关文章
相关标签/搜索