11.10日补交 顺序表的实现
摘要:
#include <stdio.h> #include <stdlib.h> #define M 100 // 线性表的最大容量 typedef int ElemType; // 定义元素类型 // 顺序线性表的结构体定义 typedef struct { ElemType *elem; // 存放 阅读全文
posted @ 2023-11-11 14:23 hhmzd233 阅读(3) 评论(0) 推荐(0) 编辑