-
火车订票系统
应用背景用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
-
电力系统的计算机算法
说明: 一本很好的电力系统教材,介绍了电力系统的各种分析方法在计算机算法方面的实现(A good textbook of power system)
- 2020-04-26 13:00:24下载
- 积分:1
-
STM32F4-MLX90614
说明: 基于stm32f4的非接触式红外测温MLX90614c程序(Mlx90614c program of non-contact infrared temperature measurement based on stm32f4)
- 2021-03-01 18:39:35下载
- 积分:1
-
(02) ISPSoft User Manual
ISPSoft User Manual
- 2018-06-28 22:31:53下载
- 积分:1
-
Class_11_Code
说明: MATLAB与神经网络的应用实例,通过蚁群算法找到最短路径(MATLAB and neural network application case, through ant colony algorithm to find the shortest path)
- 2020-11-19 18:58:32下载
- 积分:1
-
LQR
单级倒立摆LQR控制仿真 最优控制理论主要通过对性能的优化寻找可以使目标极小的控制器(Inverted Pendulum Control Simulation of LQR optimal control theory, mainly through the optimization of the performance objectives can find a very small controller)
- 2010-07-16 11:43:43下载
- 积分:1
-
music
MUSIC算法的仿真及性能分析:信源数N=3,分别来自于 =-10度, =0度, =10度;信源为相互独立幅度相同的信号;噪声为服从高斯分布的独立噪声;均匀等距直线阵,阵元数为8,波长 ;(MUSIC algorithm for the simulation and performance analysis)
- 2020-11-26 18:29:31下载
- 积分:1
-
nsga2code
说明: 对多目标遗传算法进行解析,基于多目标协同优化算法编写的遗传算法程序,具有很好的收敛性,提供了相应测试算例。(Analyzing multi-objective genetic algorithm, the genetic algorithm program based on multi-objective cooperative optimization algorithm has good convergence, and provides corresponding test examples.)
- 2021-01-04 02:38:56下载
- 积分:1
-
基于VHDL写的DS18B20的驱动,简单版本
基于VHDL写的DS18B20的驱动,简单版本-based on VHDL write DS18B20 driven, simple version
- 2022-10-29 07:20:04下载
- 积分:1
-
using CSLA.Net framework in c# example.
using CSLA.Net framework in c# example.
- 2023-08-16 11:35:04下载
- 积分:1