-
火车订票系统
应用背景用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
-
用VC控制GE的打开以及一些简单功能,效果明显
用VC控制GE的打开以及一些简单功能,效果明显-VC control with GE, as well as some simple function of the open and obvious effect
- 2022-10-23 11:30:04下载
- 积分:1
-
ARM系统启动代码的――分析和开发,深入了解系统启动原理
ARM系统启动代码的――分析和开发,深入了解系统启动原理-ARM system startup code- the analysis and development, start
- 2023-05-16 23:00:04下载
- 积分:1
-
根据3GPP25.141协议生成测试模式1下的WCDMA系统激战测试数据格式。...
根据3GPP25.141协议生成测试模式1下的WCDMA系统激战测试数据格式。-3GPP25.141 agreement in accordance with test pattern generation WCDMA systems under one battle test data format.
- 2022-04-14 20:22:10下载
- 积分:1
-
有一个小顽童在你的桌面上任意走动。你可以按住它,把它甩一甩,它就会像球一样在屏幕边缘弹来弹去。...
有一个小顽童在你的桌面上任意走动。你可以按住它,把它甩一甩,它就会像球一样在屏幕边缘弹来弹去。-a small urchin in your desktop arbitrary move. You can press it, taste it off, it will be like a ball in the same screen at the edge bombs to go.
- 2023-02-17 06:05:03下载
- 积分:1
-
技术讨论,combust 3 的制作要求,及一些要注意的容易出错的问题...
技术讨论,combust 3 的制作要求,及一些要注意的容易出错的问题-technical discussions combust 3 of production requirements, and some attention to the error-prone!
- 2022-03-23 23:27:56下载
- 积分:1
-
模拟网站登陆,极小型数据库系统
模拟网站登陆,极小型数据库系统-simulated landing site, a very small database system
- 2022-02-02 06:06:57下载
- 积分:1
-
php5.0配置文件的中文版,默认为较安全配置,复制到windows目录下即可使用。...
php5.0配置文件的中文版,默认为较安全配置,复制到windows目录下即可使用。-php5.0 configuration files of the Chinese version, more secure default configuration, copied to the windows directory can be used.
- 2022-02-24 22:57:28下载
- 积分:1
-
基础学习,是学习数据结构课程所要涉及的相关代码,可做参考...
基础学习,是学习数据结构课程所要涉及的相关代码,可做参考-basic learning
- 2023-07-10 13:05:04下载
- 积分:1
-
C语言编程产生离散单元斜边序列,序列的门…
用C语言编程产生离散单位斜边序列、门序列、指数衰减序列,实现三者卷积,并在显示器上观察到相关序列或卷积的图形。比较经典的卷积C源码-C language programming produce discrete units hypotenuse sequence, the gate sequence, exponential decay sequence, the realization of the three convolution, and observed in the display sequence, or convolution-related graphics.This is the classical convolution C original code
- 2022-02-02 22:38:30下载
- 积分:1