资源简介
数据结构(使用C语言)电梯模拟源码 很好很完整的资源哦
代码片段和文件信息
#define MaxWaitPeople 15//最大等待群体
#define MaxInPeople 8//电梯容量
#include
#include
#include
#include
#include
typedef struct
{
int director;//电梯运行方向-101
int nowFloor;//电梯所在层数0到8
int People;//电梯内人数
int waitT;//电梯等待时间
int Flag01;//电梯门的状态01
}lift;
lift L;
typedef struct
{
int arrT;//到达时间
int limitT;//容忍时间
int nowFloor;//所在层数
int goFloor;//目标层数
int director;//目的方向-101
}waitmen;//等待人群
waitmen WP[ MaxWaitPeople];
typedef struct
{
int goFloor;//目的层数0到8
int UpT;//上电梯时间
}inmen;//电梯内人群
inmen TnL[MaxInPeople];
int waitPeople = 0inPeople = 0systemT = 0;//systemT记录系统运行时间
int RandP( int x int m)//生成一个随机数
{
return (rand( ) % x + m);
}
void liftInit()//电梯状态初始化
{
L.director = 0;
L.Peop
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 7784 2011-07-09 12:42 电梯模拟\电梯模拟1.cpp
目录 0 2011-07-09 12:42 电梯模拟
----------- --------- ---------- ----- ----
7784 2
- 上一篇:VC++工程名称转换重命名程序
- 下一篇:MOPSO算法代码
评论
共有 条评论