CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 数值算法/人工智能 搜索资源 - 模板

搜索资源列表

  1. ssd.rar

    1下载:
  2. 这是模板匹配SSD的源代码,用MATLAB编写,This is template matching SSD source code, using MATLAB to prepare
  3. 所属分类:matlab

    • 发布日期:2017-03-25
    • 文件大小:12574
    • 提供者:峰峰
  1. ACM_template.rar

    1下载:
  2. 本人参加ACM竞赛使用的一些算法模板,包括二分图匹配,欧拉回路的构造以及网络流中的最大流与最小费用最大流等,可以说实战性非常强。,ACM competitions I take part in a number of algorithms used in templates, including two sub-graph matching, Euler circuit, as well as network flow structure of the maximum flow and mini
  3. 所属分类:Data structs

    • 发布日期:2017-03-31
    • 文件大小:14732
    • 提供者:诗苇
  1. emrpad30

    1下载:
  2. EMRPad3开发文档,及模板介绍,破解的方法另行讨论-EMRPad3 development documentation, and template descr iption, the method further discussion of crack
  3. 所属分类:matlab

    • 发布日期:2017-04-09
    • 文件大小:2165211
    • 提供者:pj
  1. list

    0下载:
  2. 使用模板类编写的单链表,其中有拷贝构造函数,重载赋值函数等一系列功能-Prepared using a single linked list template class
  3. 所属分类:Data structs

    • 发布日期:2017-04-06
    • 文件大小:426093
    • 提供者:zsdl1288
  1. stl

    0下载:
  2. 模板类C++,公司面试必备的东西,简介清楚易学-moudle of c++
  3. 所属分类:STL

    • 发布日期:2017-05-26
    • 文件大小:9701392
    • 提供者:yangxian
  1. STL

    0下载:
  2. 标准模板库函数 仿函数 容器 很全面很好用,可以看下-standard Template Library
  3. 所属分类:STL

    • 发布日期:2017-05-27
    • 文件大小:9654284
    • 提供者:刘韵
  1. Kernel-PCA

    0下载:
  2. KPCA经典程序,是KPCA的创始人写的,为学习KPCA提供了模板。-Classic KPCA procedures, is the founder of KPCA wrote, KPCA provides templates for learning.
  3. 所属分类:matlab

    • 发布日期:2017-03-30
    • 文件大小:1480
    • 提供者:曾波
  1. canny-edge

    0下载:
  2. 边缘检测,源代码,基于matlab的。是canny算子。也可以改动一下模板,即可变成其他算法的了。-Edge detection, source code, based on matlab' s. Is a canny operator. Can also change what the template, you can become the other algorithms.
  3. 所属分类:matlab

    • 发布日期:2017-03-23
    • 文件大小:1278
    • 提供者:xy
  1. qsort4

    0下载:
  2. 快速排序模板-Quick sort template
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-11-09
    • 文件大小:1780
    • 提供者:站长
  1. SUSAN

    0下载:
  2. SUSAN算子检测图像边缘和角点,可以自己定义不同的检测模板,实现不同功能的角点检测。-SUSAN operator detect image edges and corners, can define a different template to different functions of the corner detection.
  3. 所属分类:matlab

    • 发布日期:2017-03-25
    • 文件大小:2730
    • 提供者:陈全齐
  1. wykobi

    0下载:
  2. 一个二维计算几何库,包含了很多实用算法,都是用模板编写,容易集成。-A two-dimensional computational geometry library contains many useful algorithms are written using templates, easy to integrate.
  3. 所属分类:Data structs

    • 发布日期:2017-03-25
    • 文件大小:107183
    • 提供者:xgary
  1. ZJU-ACM

    0下载:
  2. 这是zju的ACM训练模板,包含了几乎所有的经典算法的实现。-This is zju the ACM training template that contains almost all the classical algorithm.
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-03-30
    • 文件大小:86079
    • 提供者:yf
  1. STLStream

    0下载:
  2. 使用标准模板库流(STL STREAM)来简化C++“线程安全”的日志记录-Logging:Flow using a standard template library (STL STREAM) to simplify the C++ “thread-safe”
  3. 所属分类:STL

    • 发布日期:2017-04-04
    • 文件大小:11275
    • 提供者:刘美娥
  1. bignumber

    0下载:
  2. 大数计算模板加强版,此版本可以做到几乎全部的计算,包括大数取模计算。已经封装成类。可以直接定义。 -Enhanced version of the template computation of large numbers, this version can do almost all of the terms, including large numbers modulo calculation. Has been packaged as class. Can be defined direc
  3. 所属分类:Data structs

    • 发布日期:2017-04-01
    • 文件大小:2327
    • 提供者:coolbe
  1. Stack544014

    0下载:
  2. 用模板实现顺序栈的基本功能:初始化;判断栈空;判断栈满;置空栈;入栈;出栈;要求入栈时,栈非满是可以插入元素,否则抛除异常;出栈时,栈非空返回栈顶元素,否则抛除异常。(陈儒焕组) 5、队列是只允许在一端进行插入操作,而另一端进行删除操作的线性表。如何改造数组实现队列的顺序存储。要求:用模板实现队列的判空;判满;置队空;出队,队列非空时,出队队首元素,否则报错;出队,队列非满时,插入新元素到队尾,否则报错; -The template is the order of the stack t
  3. 所属分类:Data structs

    • 发布日期:2017-03-22
    • 文件大小:38922
    • 提供者:钟书球
  1. darkchannelpriordehazing

    0下载:
  2. 基于暗原色先验的单一图像去雾算法 香港中文大学的一篇论文-dark channel prior dehazing single image dehazing using dark channel prior
  3. 所属分类:matlab

    • 发布日期:2017-05-30
    • 文件大小:13222146
    • 提供者:李方
  1. pso程序的源代码

    1下载:
  2. VC++环境下的粒子群算法源代码,通用模板,需要自行添加目标函数和约束条件-pso
  3. 所属分类:人工智能/神经网络/遗传算法

    • 发布日期:2012-11-06
    • 文件大小:12999
    • 提供者:方芳
  1. sortoutside

    0下载:
  2. 外排序 对于海量数据进行快速排序 然后利用败者树进行归并的算法的一个模板-Outside the huge amount of data to sort for quick sort loser tree and then use the algorithm to merge a template
  3. 所属分类:Data structs

    • 发布日期:2017-04-01
    • 文件大小:3125
    • 提供者:caj
  1. Permutations

    0下载:
  2. 排列组合的代码 用C++ 实现 ,用处很大 代码简洁 可以用于ACM的竞赛模板-Permutation and combination which describes how to generate code templates can be used to ACM Proved very useful in simple code
  3. 所属分类:Algorithm

    • 发布日期:2017-03-31
    • 文件大小:780
    • 提供者:mayunfeng
  1. shanghaiACM

    0下载:
  2. 杭电ACM培训资料PPT和上海交大ACM队模板,另加算法pdf-Hangzhou Xinhua ACM training materials, and Shanghai Jiao Tong University ACM Team PPT template, plus algorithm pdf
  3. 所属分类:Data structs

    • 发布日期:2017-06-10
    • 文件大小:17298386
    • 提供者:谭俊
« 1 2 ... 4 5 6 7 8 910 11 12 13 14 ... 50 »
搜珍网 www.dssz.com