
C++
beMOREexcellent
初来乍到,多多指教。
不断努力,只为明天更优秀的自己。
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
顺序存储. 线性表&学生信息管理系统
/* 文件名称:1_1_2_8.cpp 作者:汤善康 日期:2019年6月30日 */ #include<stdio.h> #include<stdlib.h> #include<malloc.h> #define MAX 100//最大容量 typedef int Status; typedef struct { long ID; char name[10];...原创 2019-07-01 19:43:06 · 3687 阅读 · 2 评论 -
链式存储.线性表.信息系统
/* 文件名:1_1_2_9.cpp 作者:汤善康 日期:2019年7月1日 */ #include<stdio.h> #include<stdlib.h> #include<malloc.h> typedef int Status; //采用线性表链式存储结构创建一个信息管理系统 typedef struct { long ID; char name[10];...原创 2019-07-02 11:23:39 · 410 阅读 · 0 评论 -
栈的创建与应用.简易信息系统
/* 文件名:1_1_3_0 作者:汤善康 日期:2019年7月3日 */ /栈存储/ #include<stdio.h> #include<stdlib.h> #include<malloc.h> #define MAX 100 typedef int Status; typedef struct { long ID; char name[10]; int g...原创 2019-07-03 21:46:14 · 253 阅读 · 0 评论 -
队列的创建与应用&学生信息系统
/* 文件名:1_1_3_1.cpp 作者:汤善康 日期:2019年7月5日 */ #include<stdio.h> #include<stdlib.h> #include<malloc.h> #define MAX 100 /队列的创建与应用/ typedef int Status; typedef struct { long ID; char name[1...原创 2019-07-05 23:13:48 · 716 阅读 · 0 评论 -
先序遍历创建二叉树并遍历输出
/* 文件名:1_1_3_2.cpp 作者:汤善康 日期:2019年7月7日 */ #include<stdio.h> #include<stdlib.h> #include<malloc.h> typedef int Status; typedef char BTelemtype; typedef struct BInode { BTelemtype data...原创 2019-07-07 11:13:24 · 5045 阅读 · 0 评论 -
算术题(按所需数量)生成
##个人信息 GIT地址 https://github.com/ShangkangTang/AchaoCalculator/blob/master/ShankangTang/ConsoleApplication1/ConsoleApplication1/ConsoleApplication1.cpp GIT用户名 ShangkangTang 学号后五位 22208 博客地址...原创 2019-09-20 21:09:57 · 678 阅读 · 0 评论