-
火车订票系统
应用背景用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
-
- 2022-02-28 10:20:15下载
- 积分:1
-
CGA模式下的绘图程序,绘制梯形 可以选择画几个(8086)
CGA模式下的绘图程序,绘制梯形 可以选择画几个(8086)-CGA graphics mode procedures, mapping trapezoidal can choose several paintings (8086)
- 2022-01-30 16:00:45下载
- 积分:1
-
Python firmata协议的读/写
Python to firmata protocol reader/writer
- 2022-01-25 19:16:30下载
- 积分:1
-
an application on the structures using arrays and pointers
an application on the structures using arrays and pointers
- 2023-05-24 14:05:03下载
- 积分:1
-
One on BPSK BER simulation procedures, including the signal generated by adding...
一个关于BPSK误码率仿真的程序,其中包括信号产生,加入高斯白噪声,和误码率计算!-One on BPSK BER simulation procedures, including the signal generated by adding Gaussian white noise, and bit error rate!
- 2022-12-05 12:55:03下载
- 积分:1
-
LEACH的MATLAB代码,很不错。可以直接运行。
LEACH的MATLAB代码,很不错。可以直接运行。-the code of LEACH for Matlab
- 2022-01-25 21:13:20下载
- 积分:1
-
用delphi写的密码管理工具.
用delphi写的密码管理工具.-used to write the password management tool.
- 2022-04-14 10:38:16下载
- 积分:1
-
this a simple login form
this a simple login form-this is a simple login form
- 2022-07-06 11:16:07下载
- 积分:1
-
This is the door with my colleagues and I strive for the isolation of the subrou...
这是我和同事门一起努力编的的孤立子程序。基本上所以孤立子的情况都考虑到了,对计算物理,特别是搞非线性数学的极大的帮助-This is the door with my colleagues and I strive for the isolation of the subroutine. So basically the situation soliton is taken into account for Computational Physics, in particular, engage in non-linear mathematics of great help
- 2022-08-17 09:12:38下载
- 积分:1