CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 源码下载

资源列表

« 1 2 ... .42 .43 .44 .45 .46 103647.48 .49 .50 .51 .52 ... 199244 »
  1. kmp

    0下载:
  2. 功能:检验主串中是否有模式串,若有则找出相应位置 操作方法: 按照提示,输入主串,回车确认,接着输入模式串,回车确认输入-Function: inspection of Lord whether any pattern strings, if have, find out the corresponding position Operation method: According to clew, the master string, the carriage return co
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-04
    • 文件大小:1.14kb
    • 提供者:
  1. Ccode

    0下载:
  2. C语言源代码实现 图的存储方法 递归算法 排序算法-Figure C-language source code storage method recursive algorithm sorting algorithm
  3. 所属分类:Data structs

    • 发布日期:2017-04-13
    • 文件大小:2.01kb
    • 提供者:keyCSky
  1. not-recursive-realized

    0下载:
  2. 该程序是分段函数: akm(m,n){ n+1 m =0 akm(m-1,1) m!=0,n=0 akm(m-1),(akm(m,n-1)) m!=0,n!=0 实现递归和非递归的算法 非递归算法可能使计算时间减少-The program is piecewise function: Akm (m, n) { N+ 1 m = 0 Akm (m-1, 1) m! = 0, n = 0 Akm (m-1) (akm (m, n-1)) m! = 0, n.=
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-03-31
    • 文件大小:859byte
    • 提供者:
  1. LabVIEW-CRC16

    1下载:
  2. LabView实现CRC16算法,非常值得参考。-LabView CRC16
  3. 所属分类:Other systems

    • 发布日期:2017-03-28
    • 文件大小:154.74kb
    • 提供者:h
  1. sd-card-test

    0下载:
  2. SD卡数据读写实验,本列子通过单片机实现SD卡数据读写,单片机为ATmega128-SD card data reading and writing test, the Liezi SD card data through the MCU to read and write, for the ATmega128 microcontroller
  3. 所属分类:SCM

    • 发布日期:2017-03-30
    • 文件大小:171.32kb
    • 提供者:译心
  1. vgaz2

    0下载:
  2. 用VHDL实现VGA信号控制的源代码 状态机 -VHDL implementation of the VGA signal with source code control state machine
  3. 所属分类:VHDL-FPGA-Verilog

    • 发布日期:2017-04-11
    • 文件大小:1.41kb
    • 提供者:keyCSky
  1. Volume

    0下载:
  2. 音量设置/读取,VB调用API实现——对雄仔提供的代码做了一点修订(可真正读取音量。原版本http://www.pudn.com/downloads9/sourcecode/windows/detail35742.html)-Volume Set/Get, VB API calls to achieve- to provide for the 雄仔 did a little revision of the code (which can actually Get the volume. The
  3. 所属分类:Multimedia Develop

    • 发布日期:2017-04-15
    • 文件大小:6.74kb
    • 提供者:liuqungen
  1. sparse-matrix

    1下载:
  2. 1 使用说明:进入菜单;根据菜单提示进行操作; 开始操作时,按 1 进行矩阵的建立和三元组法存储; 按 2 是将 1 所得的矩阵进行转置; 3 进行矩阵乘法时,第一个矩阵是 第一步产生的矩阵,第二个矩阵是重 新产生的矩阵; 2 输入:输入按照输入提示进行操作; 输出:输入矩阵简化输出;-1 instructions: access to menu According to the menu tip operation Start operation, on t
  3. 所属分类:Graph program

    • 发布日期:2017-04-02
    • 文件大小:2.12kb
    • 提供者:
  1. Image-processing

    0下载:
  2. 这是关于图像处理的实验指导书,CVI软件的-Image processing experimental instructions
  3. 所属分类:Special Effects

    • 发布日期:2017-05-08
    • 文件大小:1.85mb
    • 提供者:李莹
  1. cstore0.2.tar

    0下载:
  2. 一个关系数据库管理系统的C语言程序,实现了数据库和数据表文件结构的设计,有创建数据库数据表、添加记录、添加属性和用户帐户管理等DBMS必备功能。-A relational database manage system in C language. It implements serveral functions, such as creating database, appending records, manageing user account manage etc.
  3. 所属分类:ADO-ODBC

    • 发布日期:2017-05-16
    • 文件大小:4.09mb
    • 提供者:duos
  1. Special-matrix-of-storage

    0下载:
  2. 本程序为特殊矩阵的存储程序,以菜单的形式实现了对称矩阵,上三角矩阵,下三角矩阵,三对角矩阵的存储。存储地址包括相对地址和绝对地址。 程序运行后,请先输入矩阵的行数,即列数。然后在数组最大范围内输入矩阵的数据。 就会显示出特殊矩阵的存储情况。-The procedures for the special matrix storage procedures to the form of menu realized the symmetric matrices, the triangle ma
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-31
    • 文件大小:1017byte
    • 提供者:
  1. Binary-tree-traversal-of-recursion

    0下载:
  2. 【二叉树遍历的递归算法实现】 操作:根据提示输入相应数据实现各种功能 函数:菜单函数(menu) 前序建立二叉树(Crt_BinTree) 访问结点(Visit) 前序遍历(Pretraverse) 中序遍历(Intraverse) 后序遍历(Suctraverse) 删除树(Destory) 操作函数(perform)Pretraverse 主函数(main) 说明:结点数据初始为char型,但可在前面代码部分修改 成其他类型,
  3. 所属分类:Data structs

    • 发布日期:2017-03-22
    • 文件大小:1.57kb
    • 提供者:
« 1 2 ... .42 .43 .44 .45 .46 103647.48 .49 .50 .51 .52 ... 199244 »
搜珍网 www.dssz.com