-
火车订票系统
应用背景用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
-
头盔,3d max的模型文件,比较经典的.
头盔,3d max的模型文件,比较经典的.-helmets, 3d max model documents, more classic.
- 2022-08-07 19:18:11下载
- 积分:1
-
计算一个非负整数矩阵的铪质。注:复制铪质。C的方法。
Computes the hafnian of a nonnegative integer matrix. Notes: Copy hafnian.c to main.c, in the same directory as Rothberg s code (see above). You can download the .tar directory with the code weighted-match.tar here. Then "make" the codes (this codes are in C, not C++). The program is then run by the command "wmatch". -Computes the hafnian of a nonnegative inte ger matrix. Notes : Copy hafnian.c to main.c, in the same directory as Rothberg"s code (see abo ve). You can download the. tar directory with th e code weighted-match.tar here. Then "make" th e codes (this codes are in C, not C). The program is then run by the command "wm atch. "
- 2022-01-30 19:38:32下载
- 积分:1
-
适合LPC系列的ARM开发中的简单实例,请多多执教
适合LPC系列的ARM开发中的简单实例,请多多执教-LPC series for the ARM development of a simple example, to pay more attention to teaching
- 2022-02-25 07:03:12下载
- 积分:1
-
该文档详细介绍了supermap的一些基本知识,让用户能详细了解supermap。...
该文档详细介绍了supermap的一些基本知识,让用户能详细了解supermap。-The document detailed the SuperMap some basic knowledge, so that users can learn more about supermap.
- 2022-02-28 16:15:50下载
- 积分:1
-
摄像机标定程序:用MATLAB语言编写,主程序是张…
摄像机标定程序:用matlab语言编写,zhang是主程序,请参考test以了解调用的方法-camera calibration procedures : using Matlab language, the main program is zhang, Please refer to test to find out the calling method
- 2022-05-19 19:42:18下载
- 积分:1
-
source and detailed experimental procedures report
源程序及详细程序实验报告-source and detailed experimental procedures report
- 2022-01-22 11:25:34下载
- 积分:1
-
LCD1602驱动程序,还可以显示时间。
LCD1602驱动程序,还可以显示时间。-LCD1602 driver can also display the time.
- 2022-07-04 01:24:40下载
- 积分:1
-
Another version of the x264
另一个版本的x264的decoder,里面改进了bS的输出-Another version of the x264
- 2022-06-11 20:24:54下载
- 积分:1
-
一个DX的小引擎,包括3D,输入,音效,网络
一个DX的小引擎,包括3D,输入,音效,网络-a DX small engines, including 3D input, audio, network
- 2022-06-18 22:38:36下载
- 积分:1