菜鸟的博客

纵有疾风起,人生不言弃。

导航

2024年1月31日 #

线性表

摘要: #include <stdio.h> #include <stdlib.h> #define M 100 // 线性表的最大容量 typedef int ElemType; // 定义元素类型 // 顺序线性表的结构体定义 typedef struct { ElemType *elem; // 存放 阅读全文

posted @ 2024-01-31 22:24 hhmzd233 阅读(3) 评论(0) 推荐(0) 编辑