CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - prototype

搜索资源列表

  1. TaskOrder

    0下载:
  2. 用VBA在Excel中实现的数据生成与分析程序 问题类别:任务调度 问题原型:N个任务,每个任务都有起始时间、结束时间和利润值,同一时间只能自行一个任务 功能:规定时间段内的利润最大化问题,并给出任务执行次序。-Using VBA in Excel to achieve the data generation and analysis procedure categories: task scheduling problem prototype: N task, each task
  3. 所属分类:Algorithm

    • 发布日期:2017-03-31
    • 文件大小:14051
    • 提供者:tedachun
  1. Calculator

    0下载:
  2. java制作的计算器小程序,模拟windows下的计算器原形,并含有实验报告等。 [MyCalc.rar] - 自己写的一个计算器程序 使用java 可以模拟windows的计算器 -produced calculator java applet to simulate the prototype calculator under windows and contains the experimental reports. [MyCalc.rar]- its own written p
  3. 所属分类:JavaScript

    • 发布日期:2017-03-29
    • 文件大小:4536
    • 提供者:ye
  1. linklist

    0下载:
  2. 本程序将Head表示成指向数据类型为结构体LNode的指针变量,首先给出了单链表的定义,然后给出了单链表中函数原型的实现部分。-Head said this process will point to the data type for the structure of the pointer variable LNode, first of all, given the definition of a single list, and then given a single list in t
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-24
    • 文件大小:358340
    • 提供者:wang
  1. vxworks-Routing

    0下载:
  2. 策略路由是嵌入式网络产品的一个重要功能,它可以帮助 用户灵活制定自己的选路策略,在实际网络建设中具有很大的 实用价值;作为嵌入式网络产品开发的首选操作系统,Vxworks IP协议栈没有实现这一功能。论文在深入研究了策略路由原 理及Vxworks原IP协议栈数据转发机制的基础上,提出了加 入策略路由后Vxworks IP协议栈的数据转发机制,并分规则 和动作两部分实现了它的原型。-Routing strategy is embedded networking produc
  3. 所属分类:software engineering

    • 发布日期:2017-03-24
    • 文件大小:165889
    • 提供者:好好
  1. KeanBlog

    0下载:
  2. AutoCAD2004中首先定义了.NET API的原型。在那时,这是具有革命性的。创建混合模式的DLL来暴露托管接口,并可通过非托管的ObjectARX调用来配置(marshal)这些接口(如何配置?)-AutoCAD2004 first defined. NET API prototype. At that time, this is a revolutionary. The creation of mixed mode interface DLL to expose hosting, a
  3. 所属分类:software engineering

    • 发布日期:2017-03-28
    • 文件大小:155143
    • 提供者:leowang
  1. yuanxingmoshi

    0下载:
  2. java原型模式实例的代码-java code examples of prototype model
  3. 所属分类:SCSI-ASPI

    • 发布日期:2017-04-04
    • 文件大小:3708
    • 提供者:
  1. source

    0下载:
  2. 高校学生选课管理系统以SQL Server 2000作为后台数据库,前台以Visual C++6.0作为开发工具,首先利用该开发工具提供的各种编程控件,快速建立起系统的原型,然后再对初始原型系统进行不断修正和改进,逐渐形成可运行的系统。-College students course management systems to SQL Server 2000 database as a background, the prospects for Visual C++ 6.0 as a devel
  3. 所属分类:ADO-ODBC

    • 发布日期:2017-05-19
    • 文件大小:692471
    • 提供者:jack
  1. shiyan12

    0下载:
  2. 编制具有如下原型的函数prime,用来判断整数n是否为素数:bool prime(int n) 而后编制主函数,任意输入一个大于4的偶数d,找出满足d=d1+d2的所有数对,其中要求d1与d2均为素数(通过调用prime来判断素数)。如偶数18可以分解为11+7以及13+5;而偶数80可以分解为:43+37、61+19、67+13、73+7。 提示:i与d-i的和恰为偶数d,而且只有当i与d-i均为奇数时才有可能成为所求的“数对”。 -Prepared with the follow
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-03-31
    • 文件大小:7801
    • 提供者:
  1. shiyan13

    0下载:
  2. 编写具有如下原型的函数:int f(unsigned long x, int n, int& Lxn) 它负责将整数x的第n位(从左边数第n位,n>0)的数值放到引用Lxn之中(将作为结果返回到主调函数的对应实参变量中),并将倒数第n位(从右边数第n位,n>0)的数值作为函数结果返回去。并编制主函数对它进行调用以验证其正确性。 例如,当x=123456789,n=7时,执行语句“Rxn=f(x, n, Lxn) ”将使返回的Lxn为7,并使Rxn变为3;而执行语句“Rxn
  3. 所属分类:Other systems

    • 发布日期:2017-03-29
    • 文件大小:7998
    • 提供者:
  1. shiyan15

    0下载:
  2. 编写具有如下函数原型的递归与非递归两种函数equ,负责判断数组a与b的前n个元素值是否按下标对应完全相同,是则返回true,否则返回false。并编制主函数对它们进行调用,以验证其正确性。 bool equ(int a[], int b[], int n) 提示:递归函数中可按如下方式来分解并处理问题,先判断最后一个元素是否相同,不同则返false;相同则看n是否等于1,是则返回true,否则进行递归调用(传去实参a、b与 n-1,去判断前n-1个元素的相等性),并返回递归调用的结果
  3. 所属分类:Other systems

    • 发布日期:2017-04-01
    • 文件大小:10037
    • 提供者:
  1. 12

    0下载:
  2. 12. 编制具有如下原型的函数prime,用来判断整数n是否为素数:bool prime(int n) 而后编制主函数,任意输入一个大于4的偶数d,找出满足d=d1+d2的所有数对,其中要求d1与d2均为素数(通过调用prime来判断素数)。如偶数18可以分解为11+7以及13+5;而偶数80可以分解为:43+37、61+19、67+13、73+7。 提示:i与d-i的和恰为偶数d,而且只有当i与d-i均为奇数时才有可能成为所求的“数对”。 -12. The preparation o
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-27
    • 文件大小:808
    • 提供者:shen
  1. ni

    0下载:
  2. 由NI仪器编写 主要关于设计、原型到系统实现的统一平台——图形化设计嵌入式系统-Prepared by the NI Instrument is mainly concerned with the design, prototype to the system to achieve a unified platform- graphical design of embedded systems
  3. 所属分类:Embeded-SCM Develop

    • 发布日期:2017-05-14
    • 文件大小:3102631
    • 提供者:张三
  1. Python-3.0rc3

    0下载:
  2. 新版python引擎源码,python是著名的面向对象语言,最新的引擎有多出性能提升,是研究编译器的好原型-The new version of python source engine, python is a well-known object-oriented language, the latest number of the engine performance is good research prototype compiler
  3. 所属分类:Compiler program

    • 发布日期:2017-05-26
    • 文件大小:9473937
    • 提供者:陈涛
  1. FuzzyClusteringToolbox

    0下载:
  2. 四种聚类算法源代码及示例代码,本程序的最终目的是形成一套标准的用于聚类、可扩展的工具。包括的内容有1. 聚类算法:Kmeans和Kmedoid算法、FCMclust, GKclust, GGclust算法 2. 评估分类原型:程序可以在二维图像上绘制出聚类的结果 3. 验证:程序给每一个算法提供验证机制,每个聚类算法会统计Partition Coefficient (PC), Classification Entropy (CE), Partition Index (SC), Separatio
  3. 所属分类:matlab

    • 发布日期:2017-05-11
    • 文件大小:2136262
    • 提供者:王梦萍
  1. combinedturboequalizationandturbodecoding

    0下载:
  2. 将均衡和译码联合本文是turboequalization 的原型,对TE的发展很有意义。-Will be balanced and joint decoding turboequalization This is a prototype for the development of meaningful TE.
  3. 所属分类:ActiveX-DCOM-ATL

    • 发布日期:2017-04-16
    • 文件大小:353052
    • 提供者:deniel
  1. BaselineJPEGSoftwareCodecCodes

    0下载:
  2. In term project, we will take the baseline JPEG codec in ARM-based platform system as an example to practice the design flow in SoC. We divide the project into three parts, and the goal of each part is described as follow. Part I: Design a baseli
  3. 所属分类:ARM-PowerPC-ColdFire-MIPS

    • 发布日期:2017-05-08
    • 文件大小:1787440
    • 提供者:Billy
  1. Orpheus

    0下载:
  2. 演示VC显示Web页的程序.本程序是基于SDI结构的.-VC demo Web page shows the procedure. This procedure is based on the SDI structure.
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-06
    • 文件大小:19744
    • 提供者:ddd
  1. PHP-j_12697_zvchat

    0下载:
  2. 简介:?ZVCHAT是一个轻便的聊天室程序,目标:轻便快捷的沟通体验. 1.5更新记录 优化算法,反应速度更快. 解决了显示不准确的问题. 细节的改善. 通讯采用json. 替换prototype为mootools 优化代码,体积更小,更精湛. -Profile:? ZVCHAT is a lightweight chat room procedures, goals: a light and quick communication experience .1.5 u
  3. 所属分类:ICQ-IM-Chat

    • 发布日期:2017-04-16
    • 文件大小:111662
    • 提供者:hhq1
  1. jonathan_brenner

    0下载:
  2. 天空盒,地形,雪花, 昼夜变化,水,物理,一个fps游戏原型,要的速度-Sky box, topography, snow, day and night change, water, physics, a prototype of fps games, it is necessary to speed
  3. 所属分类:DirextX

    • 发布日期:2017-04-08
    • 文件大小:943021
    • 提供者:小风
  1. MagicForestMapEdito

    1下载:
  2. 本人刚学游戏编程时开发的一个游戏项目《魔幻森林》中的地图编辑器源码,虽然功能很简单,但是已经有了一个游戏编辑器的雏型-I am just learning the game when programming a game project developed by " magic forest" in the source map editor, although the function is simple, but there has been a prototype of
  3. 所属分类:Game Program

    • 发布日期:2017-04-25
    • 文件大小:29817
    • 提供者:lovedream
« 1 2 ... 8 9 10 11 12 1314 15 16 17 18 ... 50 »
搜珍网 www.dssz.com