交通灯控制 技术指标 (1)车辆直行时不允许车辆左拐行驶,但右拐可以同时进行,必须设有专门的左拐时间。 (2)车辆直行以及车辆左拐交替通行,直行时间绿灯每次放行60秒,车辆左拐每次放行30秒。 (3)绿灯亮表示可通行.红灯亮表示禁止通行。 (4)直行车辆每次绿灯变红灯时.黄灯先亮5秒。 (5)十字路口要有数字显示,作为等候时间提示。要求各通道的通行时间及黄灯亮的时间均以秒为单位作减计数。 (6)设置行人过马路的红绿灯。 (7)增加紧急情况处理,允许急救车优先通过要求,当有急救车通过时,路口信号灯全部变红,倒计时停止计数,以便让急救车通过。急救车通过后,交通灯恢复原先状态。
上传时间: 2013-12-22
上传用户:hj_18
汉诺塔!!! Simulate the movement of the Towers of Hanoi puzzle Bonus is possible for using animation eg. if n = 2 A→B A→C B→C if n = 3 A→C A→B C→B A→C B→A B→C A→C
标签: the animation Simulate movement
上传时间: 2017-02-11
上传用户:waizhang
PIC16C63单片机UART通信——A机读取时钟芯片DS1302获得当前时间,通过UART通信传给B机,B机使用LCD1602显示当前时间
上传时间: 2013-11-30
上传用户:shanml
网点后台,NetShop网店系统安装方法 注意: 安装包仅适用于您的站点没有安装过NetShop网店系统的情况下全新安装,如果您的站点曾经安装过NetShop网店系统,则不能使用本包进行安装、升级等操作,否则会清空现有产品使用的的数据库。 详细安装过程如下: 1.解压程序包内的所有文件,使用FTP工具将./upload目录中所有文件上传至服务器; 2.在浏览器中访问:http://您的网址/install/index.aspx; 3.请根据向导,填入必要的信息,开始安装; 特别注意的是,要根据安装向导的提示,正确设置各个目录的读写属性,并保证服务器相关的配置启用 4.安装完毕后为了保证数据安全,务必删除install目录; 如果您还有安装问题,请参考NetShop帮助文档或登录NetShop官网论坛:http://bbs.netshop.net.cn;
上传时间: 2014-11-08
上传用户:cx111111
GRE 数学圣经,下面是详细的英文介绍: Comprehensive Prep for GRE Math Every year, students pay $1,000 and more to test prep companies to prepare for the math section of the GRE. Now you can get the same preparation in a book. Although the GRE math section is difficult, it is very learnable. GRE Math Bible presents a thorough analysis of GRE math and introduces numerous analytic techniques that will help you immensely, not only on the GRE but in graduate school as well.
标签: GRE Math 数学
上传时间: 2015-08-22
上传用户:东大寺的
一、地址映射与数据传输 二、PCI9054的基本知识 三、PCI9054的寄存器之间的关系
标签: PCI 总线学习笔记
上传时间: 2016-02-15
上传用户:4722656
实验十 子程序结构设计实验
上传时间: 2016-05-11
上传用户:txzdll
1. 有的题目解法可能不唯一,导致最后答案形式不唯一 2. 对矩阵进行变换时一直是行的变换 3. 行列式求值时可能会用到列的性质 4. 近几年的考题每套都至少做两遍以上
标签: 线性代数
上传时间: 2016-05-12
上传用户:18733571148
HR工具书 101个面试难题及 结构化面试题库
上传时间: 2016-06-03
上传用户:慢调写手
实验源代码 //Warshall.cpp #include<stdio.h> void warshall(int k,int n) { int i , j, t; int temp[20][20]; for(int a=0;a<k;a++) { printf("请输入矩阵第%d 行元素:",a); for(int b=0;b<n;b++) { scanf ("%d",&temp[a][b]); } } for(i=0;i<k;i++){ for( j=0;j<k;j++){ if(temp[ j][i]==1) { for(t=0;t<n;t++) { temp[ j][t]=temp[i][t]||temp[ j][t]; } } } } printf("可传递闭包关系矩阵是:\n"); for(i=0;i<k;i++) { for( j=0;j<n;j++) { printf("%d", temp[i][ j]); } printf("\n"); } } void main() { printf("利用 Warshall 算法求二元关系的可传递闭包\n"); void warshall(int,int); int k , n; printf("请输入矩阵的行数 i: "); scanf("%d",&k); 四川大学实验报告 printf("请输入矩阵的列数 j: "); scanf("%d",&n); warshall(k,n); }
上传时间: 2016-06-27
上传用户:梁雪文以