-
火车订票系统
应用背景用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
-
列主元消去法解方程组编程
列主元消去法解方程组编程 -Out PCA solution of equations elimination Programming
- 2022-09-12 04:15:03下载
- 积分:1
-
房产类中介类整站源程序。适合房屋中介和其他中介类小公司建立网站。...
房产类中介类整站源程序。适合房屋中介和其他中介类小公司建立网站。-property intermediary stations like the whole source. Suitable housing and other intermediaries intermediary category of smaller companies website.
- 2022-04-07 21:15:47下载
- 积分:1
-
是一个利用数组编写的迷宫程序!
是一个利用数组编写的迷宫程序!-is an array prepared by the use of the maze procedure!
- 2023-03-09 02:40:03下载
- 积分:1
-
PKU ACM 1007 的源码,求逆序的算法时间复杂度控制在O(n)
PKU ACM 1007 的源码,求逆序的算法时间复杂度控制在O(n)-PKU ACM 1007 source code, and reverse time complexity of the algorithm control in O (n)
- 2023-03-15 11:40:03下载
- 积分:1
-
Flash rnd随机数编程实例源码
Flash rnd随机数编程实例源码,随机生成云朵,数量随机和位置随机,淡入淡出渐变,运用Flash As脚本技术编程实现,初学者可以此为范例,学习一下Flash随机数编程。
- 2022-07-01 01:04:56下载
- 积分:1
-
MICROSOFT 基础类库: DLLExample 项目概述
==============================================...
MICROSOFT 基础类库: DLLExample 项目概述
========================================================================
应用程序向导已为您创建了此 DLLExample DLL。此 DLL 不仅演示 Microsoft 基础类的基本使用方法,还可作为您编写 DLL 的起点。
-MICROSOFT Foundation Class Library: DLLExample project outlined ========================================== ============================== Application Wizard has been created for you this DLLExample DLL. This DLL not only the demonstration of Microsoft based on basic use, but also as your starting point for the preparation of DLL.
- 2022-01-25 23:23:59下载
- 积分:1
-
... ...游戏
src......源代码
image....图片
... ...游戏
src......源代码
image....图片
-Src ...... ... ... the game source code image .... picture
- 2022-04-13 14:20:33下载
- 积分:1
-
用于液晶显示的取模工具,能满足任何要求,纵向低地址,高地址都可以...
用于液晶显示的取模工具,能满足任何要求,纵向低地址,高地址都可以-For liquid crystal display modulus tools, can meet any request, vertical low-address high-address can be
- 2022-02-12 18:49:47下载
- 积分:1
-
一个简单的大赛评分系统,可以输入评委人数,然后根据每个选手的得分进行排名。...
一个简单的大赛评分系统,可以输入评委人数,然后根据每个选手的得分进行排名。-Contest a simple scoring system, can enter the number of judges, and then the score of each player ranked.
- 2023-03-13 07:35:03下载
- 积分:1