虫虫首页| 资源下载| 资源专辑| 精品软件
登录| 注册

472<b>8.04</b>

  • 汉诺塔!!! Simulate the movement of the Towers of Hanoi puzzle Bonus is possible for using animation

    汉诺塔!!! 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获得当前时间

    PIC16C63单片机UART通信——A机读取时钟芯片DS1302获得当前时间,通过UART通信传给B机,B机使用LCD1602显示当前时间

    标签: 1302 UART PIC 16C

    上传时间: 2013-11-30

    上传用户:shanml

  • ARINC429总线

    •ARINC429总线协议是美国航空电子工程委员会(Airlines Engineering Committee)于1977年7月提出的,并于同年发表并获得批准使用,它的全称是数字式信息传输系统(Digital Information Transmission System ) 。协议标准规定了航空电子设备及有关系统间的数字信息传输要求。ARINC429广泛应用在先进的民航客机中,如B-737、B-757、B-767,俄制军用飞机也选用了类似的技术。

    标签: ARINC429 总线

    上传时间: 2015-03-25

    上传用户:423619775

  • GRE数学宝典(英文原版GRE Math Bible)

    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

    上传用户:东大寺的

  • PCI 总线学习笔记

    一、地址映射与数据传输 二、PCI9054的基本知识 三、PCI9054的寄存器之间的关系

    标签: PCI 总线学习笔记

    上传时间: 2016-02-15

    上传用户:4722656

  • 实验十 子程序结构设计实验

    实验十  子程序结构设计实验

    标签: 实验 程序结构 设计实验

    上传时间: 2016-05-11

    上传用户:txzdll

  • 线性代数考点解析

    1. 有的题目解法可能不唯一,导致最后答案形式不唯一 2. 对矩阵进行变换时一直是行的变换 3. 行列式求值时可能会用到列的性质 4. 近几年的考题每套都至少做两遍以上

    标签: 线性代数

    上传时间: 2016-05-12

    上传用户:18733571148

  • 《电力工程电缆设计规范》

    电力工程电缆设计规范 GB 50217-2007 3 电缆型式与截面选择 3.1 电缆导体材质  3.2 电力电缆芯数  3.3 电缆绝缘水平  3.4 电缆绝缘类型  3.5 电缆护层类型  3.6 控制电缆及其金属屏蔽  3.7 电力电缆导体截面  4 电缆附件的选择与配置 4.1 一般规定  4.2 自容式充油电缆的供油系统  5 电缆敷设 5.1 一般规定  5.2敷设方式选择  5.3地下直埋敷设 5.4保护管敷设 5.5电缆构筑物敷设 5.6其他公用设施中敷设 5.7水下敷设 6电缆的支持与固定 6.1 一般规定  6.2 电缆支架和桥架  7 电缆防火与阻止延燃 附录A 常用电力电缆导体的最高允许温度  附录B 10kV及以下电力电缆经济电流截面选用方法  附录C 10kV及以下常用电力电缆允许100%持续载流量  附录D 敷设条件不同时电缆允许持续载流量的校正系数  附录E 按短路热稳定条件计算电缆导体允许最小截面的方法

    标签: 电力工程 电缆 设计规范

    上传时间: 2016-05-31

    上传用户:fffvvv

  • 101个面试难题及结构化面试题库

    HR工具书   101个面试难题及 结构化面试题库

    标签: 101 面试题

    上传时间: 2016-06-03

    上传用户:慢调写手

  • 离散实验 一个包的传递 用warshall

     实验源代码 //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); } 

    标签: warshall 离散 实验

    上传时间: 2016-06-27

    上传用户:梁雪文以