在好例子网,分享、交流、成长!
您当前所在位置:首页Go 开发实例Go语言基础 → 电梯程序(knuthElevator.go)

电梯程序(knuthElevator.go)

Go语言基础

下载此实例
  • 开发语言:Go
  • 实例大小:0.03M
  • 下载次数:8
  • 浏览次数:108
  • 发布时间:2021-03-27
  • 实例类别:Go语言基础
  • 发 布 人:army3force
  • 文件格式:.go
  • 所需积分:2
 相关标签: 程序

实例介绍

【实例简介】电梯程序
【实例截图】

【核心代码】


import (
"fmt"
"math/rand"
"time"
)

const (
// The Mathematics building has five floors: sub-basement, basement, first,
// second, and third. There is a single elevator, which has automatic controls
// and can stop at each floor. For convenience we will renumber the floors 0, 1,
// 2, 3, and 4.
floorSubbasement = 0
floorBasement    = 1
floorFirst       = 2
floorSecond      = 3
floorThird       = 4

floorHome = floorFirst

floors = 5

// The elevator is in one of three states: GOINGUP, GOINGDOWN, or NEUTRAL.
// (The current state is indicated to passengers by lighted arrows inside the
// elevator.) If it is in NEUTRAL state and not on floor 2, the machine will close
// its doors and (if no command is given by the time its doors are shut) it will
// change to GOINGUP or GOINGDOWN, heading for floor 2. (This is the “home floor,”
// since most passengers get in there.) On floor 2 in NEUTRAL state, the doors will
// eventually close and the machine will wait silently for another command. The first
// command received for another floor sets the machine GOINGUP or GOINGDOWN as
// appropriate; it stays in this state until there are no commands waiting in the
// same direction, and then it switches direction or switches to NEUTRAL just before
// opening the doors, depending on what other commands are in the CALL variables. The
// elevator takes a certain amount of time to open and close its doors, to accelerate
// and decelerate, and to get from one floor to another.
stateGoingUp = iota
stateGoingDown
stateNeutral

// E1--E9
stepWaitForCall          = 1
stepChangeOfState        = 2
stepOpenDoors            = 3
stepLetPeopleOutIn       = 4
stepCloseDoors           = 5
stepPrepareToMove        = 6
stepGoUpAFloor           = 7
stepGoDownAFloor         = 8
stepSetInactionIndicator = 9

minGiveUpTime = 30 * 10     // 30 seconds
maxGiveUpTime = 2 * 60 * 10 // 2 minutes

minInterTime = 1 * 10  // 1 seconds
maxInterTime = 90 * 10 // 90 seconds

maxTime = 1000 * 10 // stop simulation after 1000 seconds
)

type node struct {
info  interface{}
llink *node
rlink *node
}

标签: 程序

实例下载地址

电梯程序(knuthElevator.go)

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警