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

2.<b>09</b>2

  • 汇编常用的小程序

    汇编常用的小程序,包括2转10,2转ASCII等等,里面注释比较详细,请大家自己看,欢迎提出意见。

    标签: 汇编 程序

    上传时间: 2016-01-02

    上传用户:caiiicc

  • We have a group of N items (represented by integers from 1 to N), and we know that there is some tot

    We have a group of N items (represented by integers from 1 to N), and we know that there is some total order defined for these items. You may assume that no two elements will be equal (for all a, b: a<b or b<a). However, it is expensive to compare two items. Your task is to make a number of comparisons, and then output the sorted order. The cost of determining if a < b is given by the bth integer of element a of costs (space delimited), which is the same as the ath integer of element b. Naturally, you will be judged on the total cost of the comparisons you make before outputting the sorted order. If your order is incorrect, you will receive a 0. Otherwise, your score will be opt/cost, where opt is the best cost anyone has achieved and cost is the total cost of the comparisons you make (so your score for a test case will be between 0 and 1). Your score for the problem will simply be the sum of your scores for the individual test cases.

    标签: represented integers group items

    上传时间: 2016-01-17

    上传用户:jeffery

  • 操作系统原理教程电子教案ppt

    操作系统原理教程电子教案ppt,第1章 操作系统概述2.ppt,第2章 处理器管理.ppt,第3章 存储器管理.ppt,第4章 文件管理.ppt,第5章 设备管理.ppt,第6章 作业管理与系统接口.ppt

    标签: 操作系统原理 教程 电子教案

    上传时间: 2016-01-24

    上传用户:thuyenvinh

  • 三星照相模块驱动。linux/char下

    三星照相模块驱动。linux/char下,linux 2.6与linux 2.4下都使用

    标签: linux char 三星 模块

    上传时间: 2016-02-04

    上传用户:youmo81

  • The XML Toolbox converts MATLAB data types (such as double, char, struct, complex, sparse, logical)

    The XML Toolbox converts MATLAB data types (such as double, char, struct, complex, sparse, logical) of any level of nesting to XML format and vice versa. For example, >> project.name = MyProject >> project.id = 1234 >> project.param.a = 3.1415 >> project.param.b = 42 becomes with str=xml_format(project, off ) "<project> <name>MyProject</name> <id>1234</id> <param> <a>3.1415</a> <b>42</b> </param> </project>" On the other hand, if an XML string XStr is given, this can be converted easily to a MATLAB data type or structure V with the command V=xml_parse(XStr).

    标签: converts Toolbox complex logical

    上传时间: 2016-02-12

    上传用户:a673761058

  • 扫雷程序还会自动展开已确定没有雷的雷区。如果a[3][4]周围雷数为1

    扫雷程序还会自动展开已确定没有雷的雷区。如果a[3][4]周围雷数为1,a[2][3]已被标示为地雷,那么a[2][4],a[2][5],a[3][3],a[3][5],a[4][3],a[4][4],a[4][5]将被展开,一直波及到不可确定的雷区。这也是实现的关键。我们可以把数组的元素设定为一个类对象,它们所属的类设定这样的一个事件:在被展开时,检查周围的雷数是否与周围标示出来的雷数相等,如果相等则展开周围未标示的雷区。这样新的雷区展开又触发这个事件,就这样递归下去,一直蔓延到不可展开的雷区。相信在了解以上两个要点后,把雷区这个类编写完全(如添加是否有雷标记,是否展开标记,周围雷数等,双击,左右单击的鼠标事件等),实现扫雷程序应是十分简单的一件事。

    标签: 程序 自动

    上传时间: 2016-02-13

    上传用户:GHF

  • 增量型PID算法汇编程序

    增量型PID算法汇编程序,增量式PID算法的输出量为 UnΔ = Kp[(en-en-1)+(T/Ti)en+(Td/T)(en-2*en-1+en-2)] 式中,en、en-1、en-2分别为第n次、n-1次和n-2次的偏差值,Kp、Ti、Td分别为比例系数、积分系数和微分系数,T为采样周期。

    标签: PID 增量 算法 汇编程序

    上传时间: 2016-03-11

    上传用户:zaizaibang

  • Agent动画演示 Agent动画人物使用演示 安装:Agent是一种ActiveX控件

    Agent动画演示 Agent动画人物使用演示 安装:Agent是一种ActiveX控件,在Delphi IDE中选择菜单Component, Import ActiveX Control,选择Microsoft Agent Control 2.0 (Version 2.0),点Install安装便可。 其它:请直接查看本程序源码及相关设置,祝你快乐

    标签: Agent ActiveX 动画 控件

    上传时间: 2016-03-29

    上传用户:缥缈

  • 功能:在默认有唯一解的情况下

    功能:在默认有唯一解的情况下,求出一次方程组的解 使用说明:1.在方程计算器所在目录下新建一个文本文档并另存为“matrix”(注意文件名的大小写和拼写) 格式: 第一行是未知数个数n 后面每行n+1个用空格隔开的数,表示一个方程 (e.g) 2x+3y-z=6 就输入 2 3 -1 6 2.保存之后双击运行“方程计算器” 3.程序会在目录下生成名为“answer”的文本文档,打开就是答案了。

    标签:

    上传时间: 2016-05-02

    上传用户:xg262122

  • 简单一元函数优化实例

    简单一元函数优化实例,利用遗传算法计算函数f(x)=x*sin(10pi*x)+2.0,-1<=x<=2的最大值

    标签: 函数优化

    上传时间: 2016-05-19

    上传用户:love_stanford