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

搜索资源列表

  1. Divide-and-Conquer-maxmin

    0下载:
  2. 分治策略 maxmin算法 求数组A[1...n]最大最小元素-Divide and Conquer maxmin
  3. 所属分类:Java Develop

    • 发布日期:2017-03-29
    • 文件大小:6601
    • 提供者:sq
  1. divide-into-python

    0下载:
  2. 这是一本详细介绍python及其应用的书籍,内容理论同时结合实际的例子,是关于 python的很经典的一本书籍-the book is about python,and it is therotical and practical.it is a very classical book anout python
  3. 所属分类:Other systems

    • 发布日期:2017-05-13
    • 文件大小:3381433
    • 提供者:陈珍珍
  1. Divide-and-conquer-algorithm

    0下载:
  2. 分治算法是基于多分枝递归的一种算法设计模式。分治算法递归地把一个大问题分解为多个类型相同的子问题,直到这些子问题足够的简单能被直接解决。最后把这些子问题的解结合起来就能得到原始问题的解。-Divide and conquer algorithm is based on a multi-branch recursive algorithm design pattern. Divide and conquer algorithm recursively to a large problem into
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-03-23
    • 文件大小:7849
    • 提供者:刘旭
  1. divide

    1下载:
  2. divide模块,实现除法功能。该module是用Verilog编写的,压缩包里包括了设计程序以及测试程序(testbench)。-divide module, the division function. The module is written in Verilog, compression bag, including the design process and testing process Sequence (testbench).
  3. 所属分类:VHDL-FPGA-Verilog

    • 发布日期:2017-03-30
    • 文件大小:31761
    • 提供者:周狩猎
  1. divide-cells-excel

    0下载:
  2. divide text in the ce-divide text in the cell
  3. 所属分类:Bio-Recognize

    • 发布日期:2017-03-31
    • 文件大小:662
    • 提供者:kabas
  1. Divide-et-impera

    0下载:
  2. divide et impera method of programming in some exercises
  3. 所属分类:Games

    • 发布日期:2017-04-04
    • 文件大小:2509
    • 提供者:alitllegirl
  1. Divide

    0下载:
  2. 分治法求最值的C++程序实现。算法设计课程可以参考-Divide and conquer method to seek the most value C++ program.
  3. 所属分类:Data structs

    • 发布日期:2017-04-16
    • 文件大小:244573
    • 提供者:zhangke
  1. Divide-by-2-Counter

    0下载:
  2. 2分频,通过计数器实现,很实用的,可以作为时钟驱动。-Divide by the counter to achieve very practical, can be used as clock driver.
  3. 所属分类:VHDL-FPGA-Verilog

    • 发布日期:2017-04-03
    • 文件大小:584
    • 提供者:郭稳
  1. Divide

    0下载:
  2. this is code divide algorithm
  3. 所属分类:Java Develop

    • 发布日期:2017-04-09
    • 文件大小:16975
    • 提供者:linuxarna
  1. recursive-divide-and-conquer

    0下载:
  2. 算法设计课件(第二章递归与分治),主要讲述递归与分治-Algorithm courseware design (Chapter II recursive divide and conquer), focuses on the recursive divide and conquer
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-04-02
    • 文件大小:68686
    • 提供者:刘强
  1. random-divide-group

    0下载:
  2. 随即分组的一种简单算法,类似于分组摇号抽奖的功能实现-random divide group
  3. 所属分类:Other systems

    • 发布日期:2017-12-01
    • 文件大小:368264
    • 提供者:ray
  1. divide

    0下载:
  2. 实现带符号位的除法,使用二进制的左移处理,属于第三个大作业,懂的人都懂得-signed divide
  3. 所属分类:VHDL-FPGA-Verilog

    • 发布日期:2017-11-30
    • 文件大小:3597376
    • 提供者:zdg
  1. Character-digital-divide

    0下载:
  2. 字符数字分割Character digital divide-Character digital divide
  3. 所属分类:OpenCV

    • 发布日期:2017-12-03
    • 文件大小:253657
    • 提供者:老赵
  1. Divide-MergeSort

    0下载:
  2. 分治法描述归并/合并排序,附有文档详细说明。-The divide-and-conquer method described merge/merge sort, with document details.
  3. 所属分类:Data structs

    • 发布日期:2017-12-01
    • 文件大小:199347
    • 提供者:Mcy
  1. Divide-and-ConqueraaMST

    0下载:
  2. 分治,最小生成树。自己做题的心得以及代码,希望可以对初学者起到一点作用。-Divide and conquer, minimum spanning tree
  3. 所属分类:Data structs

    • 发布日期:2017-11-14
    • 文件大小:10993
    • 提供者:Rain
  1. conquer-and-divide-algorithm

    0下载:
  2. 本章描述了讲解了分治算法的基本思想和设计过程以及原理-Explain the basic idea and design process as well as the principle of divide and conquer algorithm described in this chapter
  3. 所属分类:Data structs

    • 发布日期:2017-11-17
    • 文件大小:547959
    • 提供者:fengjianlong
  1. divide-and-conquer-algorithm

    0下载:
  2. 利用分治策略求解时,所需时间取决于分解后子问题的个数、子问题的规模大小等因素,而二分法,由于其划分的简单和均匀的特点,是经常采用的一种有效的方法,例如二分法检索。-When solving using the divide and conquer strategy, the time required depends on the number of decomposed sub-problems, the size of sub-problems and other factors, but
  3. 所属分类:Algorithm

    • 发布日期:2017-03-30
    • 文件大小:5081
    • 提供者:周易
  1. divide-and-conquer

    0下载:
  2. 组合优化与算法分析 分治算法(divide and conquer)的描述和分析-divide and conquer
  3. 所属分类:Algorithm

    • 发布日期:2017-05-06
    • 文件大小:1473375
    • 提供者:小蟋蟀
  1. C-program-to-add--subtract--multiply-and-divide-C

    0下载:
  2. C program to add, subtract, multiply and divide Complex Numbers, complex arithmetic
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-04-16
    • 文件大小:16596
    • 提供者:swapnil patil
  1. divide-and-conquer-algorithm

    0下载:
  2. 《算法引论中》解决分治算法问题以及轮廓问题,讨论算法,适合初学者-" Introduction to Algorithms in the" divide and conquer algorithm to solve the problem and outline problems, discuss algorithms, suitable for beginners
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-04-08
    • 文件大小:390998
    • 提供者:呼晓东
« 1 23 4 5 6 7 8 9 10 ... 50 »
搜珍网 www.dssz.com