摘要: #include<stdio.h> #define Max_Size 100 // 线性表可能达到的最大长度 typedef struct List { int data[Max_Size]; // 用于存放数据元素数组 int length; // 当前长度 } sqList; // 初始化线性表 阅读全文
posted @ 2020-10-31 15:46 DawnCoody 阅读(442) 评论(0) 推荐(0)