- 博客(7)
- 收藏
- 关注
原创 数据结构顺序表-学生管理系统
#include<stdio.h>#include<windows.h>#include<stdlib.h>#define INIT_SIZE 100 //线性表储存空间的初始分配量#define INCREMENT 10 //线性表储存空间的分配增量typedef struct{char sname[9];int score;}student;typedef student ElemType;typedef struct...
2022-07-10 17:10:31 348
原创 单链表-学生信息管理系统
#include<stdio.h>#include<windows.h>#include<stdlib.h>typedef struct{char sno[20];char sname[8];char sex[2];int score; }student;typedef student ElemType;//单链表类型定义typedef struct LNode{ElemType data;...
2022-07-10 16:56:04 263
原创 电子技术-万用表
链接:https://pan.baidu.com/s/1qWD-A2Ef6czvdLkRJ1XKCw?pwd=soo5提取码:soo5在网盘中看
2022-07-08 11:00:33 91
原创 图-数据结构
链接:https://pan.baidu.com/s/1p4Q5oVgZxZZ6j_jGJHjlrg?pwd=9j9h提取码:9j9h在百度云盘上看下载
2022-07-08 10:50:24 125
原创 【无标题】
大一时刚开始写代码的成绩统计系统管理有点不好#include<stdio.h>#include<string.h>struct grade_list{ //定义结构体 char name[10]; //姓名 float c_len; ...
2022-06-11 09:59:53 65 1
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人