摘要: #include<iostream> #include<string> #define Maxsize 100 using namespace std; // 学生结构体:包含学号、姓名、分数 typedef struct { int id; // 学号 string name; // 姓名 flo 阅读全文
posted @ 2025-09-17 14:41 ouyeye 阅读(12) 评论(0) 推荐(0)
摘要: #include<iostream> #include<cstdlib> #define Maxsize 100 using namespace std; typedef struct//存储元素 { int data[Maxsize]; int length; }Sqlist; //建立顺序表 t 阅读全文
posted @ 2025-09-17 14:11 ouyeye 阅读(15) 评论(0) 推荐(0)