-
火车订票系统
应用背景用C语言写的火车订票系统,对于C语言学习者学习链表有极大的帮助,内含测试文件供测试。。。。。。。。。。。。关键技术/*定义存储火车信息的结构体*/
struct train
{
char num[10];/*列车号*/
char city[10];/*目的城市*/
char takeoffTime[10];/*发车时间*/
char receiveTime[10];/*到达时间*/
int price;/*票价*/
int bookNum ;/*票数*/
};
/*订票人的信息*/
struct man
{
char num[10];/*ID*/
char name[10];/*姓名*/
int bookNum ;/*需求的票数*/
};
/*定义火车信息链表的结点结构*/
typedef struct node
{
struct train data ;
struct node * next ;
}Node,*Link ;
/*定义订票人链表的结点结构*/
typedef struct people
{
struct man data ;
struct people*next ;
}bookMan,*bookManLink ;
- 2022-02-01 04:42:30下载
- 积分:1
-
内存管理
memory management
- 2022-07-10 03:27:20下载
- 积分:1
-
华北工学院校园导游系统
华北工学院校园导游系统-NCUST campus tour guide system
- 2022-05-10 23:56:53下载
- 积分:1
-
详细地介绍了世界上先进的表面处理工艺
很实用
详细地介绍了世界上先进的表面处理工艺
很实用-detailed introduction of the world"s advanced surface treatment technology is practical
- 2023-02-06 01:05:04下载
- 积分:1
-
Lib source code of Machine study supporting Vector machine
机器学习支持向量机的代码libsvm 2.36版-Lib source code of Machine study supporting Vector machine
- 2023-03-12 21:40:04下载
- 积分:1
-
编程创建一个Box类,在其中定义三个变量表示一个立方体的长、宽和高,再定义一个方法setDemo对这三个变量进行初始化,然后定义一个方法求立方体的体积。创建一个...
编程创建一个Box类,在其中定义三个变量表示一个立方体的长、宽和高,再定义一个方法setDemo对这三个变量进行初始化,然后定义一个方法求立方体的体积。创建一个对象,求给定尺寸的立方体的体积。对这个内容的编程代码及结果实现-Programming to create a Box class, in which the three variables that define a cube of length, width and height, and then define a method setDemo these three variables initialized, and then define a method, to calculate the volume of the cube. Create an object, seeking for a given volume of the cube size. The content of this programming code and the results achieved
- 2022-08-22 19:27:02下载
- 积分:1
-
这是我的计算机图形学的实验――梁友栋算法
这是我的计算机图形学的实验――梁友栋算法-This is my experimental computer graphics-- friends of Liang Dong Algorithm
- 2022-02-26 08:36:13下载
- 积分:1
-
易语言开源恶搞软件,出现两选框,但让你的朋友只能点选喜欢你按钮...
易语言开源恶搞软件,出现两选框,但让你的朋友只能点选喜欢你按钮-Yi language恶搞open source software, there two marquee, but let your friends like you can click the button
- 2022-02-02 14:20:54下载
- 积分:1
-
LabVIEW programming skills demonstration, prepared by LabVIEW applications windo...
labview程序编程技巧演示,用labview编写windows应用计算器小程序-LabVIEW programming skills demonstration, prepared by LabVIEW applications windows calculator applet
- 2023-06-21 11:50:03下载
- 积分:1
-
enumeration of computer LAN
枚举局域网内的计算机-enumeration of computer LAN
- 2023-08-09 19:15:03下载
- 积分:1