-
火车订票系统
应用背景用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
-
STM32 LCD12864驱动 实现描点绘图,显示汉字,绘制波形,坐标
STM32 LCD12864驱动 实现描点绘图,显示汉字,绘制波形,坐标,代码内有详细的注释,使用keil环境编写,提供函数接口,很方便就可以应用到自己的项目中去。
- 2023-04-15 16:00:03下载
- 积分:1
-
The help files in Windows API function has about 774, divided into twelve catego...
本帮助文件中的Windows API 函数大约有774个,共分十二大类,基本上包括了大部分的常用和非常用的Windows API 函数。-The help files in Windows API function has about 774, divided into twelve categories, basically most of the commonly used and very used to Windows API functions.
- 2022-10-18 02:30:03下载
- 积分:1
-
能实现员工信息系统的管理,以及增删改查等
能实现员工信息系统的管理,以及增删改查等-To achieve the management of employee information systems, as well as additions or deletions to change so check
- 2023-03-20 11:25:03下载
- 积分:1
-
矩阵导致小程序,对输入的矩阵求倒置后的矩阵
矩阵导致小程序,对输入的矩阵求倒置后的矩阵-Matrix led to a small program, the input of the matrix after the matrix inversion
- 2022-04-06 10:06:55下载
- 积分:1
-
2009年9月 《无线电》附资料 可以下载 有源代码
2009年9月 《无线电》附资料 可以下载 有源代码-In September 2009 " radio" attached to the information source code can be downloaded
- 2022-06-12 07:17:37下载
- 积分:1
-
一个简单的五子棋游戏,互相交流,请多指教
一个简单的五子棋游戏,互相交流,请多指教-Gobang a simple game to exchange, please advise
- 2022-02-14 10:12:25下载
- 积分:1
-
改程序描述了,在vs中数据库的一系列的用法,重数据库的链接,数据库的创建,数据库的访问和数据库视图的建立,数据库修改等基本的过程。不愧为学习数据库的好例子。...
改程序描述了,在vs中数据库的一系列的用法,重数据库的链接,数据库的创建,数据库的访问和数据库视图的建立,数据库修改等基本的过程。不愧为学习数据库的好例子。-Change procedure described in the series vs the usage of the database, re-link to the database, database creation, database access and database view creation, database, modify the basic process. Worthy of study and a good example of the database.
- 2022-02-04 00:48:03下载
- 积分:1
-
VC and Matlab programming interface configuration installed Matcom's source...
VC与Matlab接口编程之Matcom安装配置源代码下载-VC and Matlab programming interface configuration installed Matcom"s source code Download
- 2022-02-12 01:21:14下载
- 积分:1
-
这是一个声控系统,大家可以根据这个软件的代码去做一些相关的软件。其中包括了文档,代码以及软件...
这是一个声控系统,大家可以根据这个软件的代码去做一些相关的软件。其中包括了文档,代码以及软件-This is a voice-activated system, we can according to the software code to do a number of related software. Including documentation, code and software
- 2022-11-10 09:05:04下载
- 积分:1