摘要: //线性表的顺序存储 #include<stdio.h> #include<malloc.h> //定义一个结构体 struct Arr { int* p; int max; int length; }; //初始数组 void init_arr(struct Arr* arr, int max) 阅读全文
posted @ 2022-04-05 14:14 Li_WenWu 阅读(32) 评论(0) 推荐(0)