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

搜索资源列表

  1. prefixspan的源代码c++

    1下载:
  2. 序列模式挖掘prefixspan算法源代码。License: GPL2 (Gnu General Public License Version 2) Requirements: C++ compiler with STL (Standard Template Library).-sequence Mining prefixspan algorithm source code. License : GPL (Gnu General Public License Version 2) Re
  3. 所属分类:人工智能/神经网络/遗传算法

    • 发布日期:2008-10-13
    • 文件大小:19852
    • 提供者: 高敏
  1. mgwenti

    0下载:
  2. 用stl实现的迷宫问题算法!(源创) 在这里你将看到stl的强大和方便!-used to achieve the maze Problem! (Source Chong) Here you will see stl a powerful and convenient!
  3. 所属分类:人工智能/神经网络/遗传算法

    • 发布日期:2008-10-13
    • 文件大小:1394
    • 提供者:王哲江
  1. anneal_travel

    0下载:
  2. 用模拟退火算法求解旅行商问题,其中用STL中的Vector来实现路径的存放 -simulated annealing algorithm for the traveling salesman problem, which use the STL Vector to achieve the storage path
  3. 所属分类:人工智能/神经网络/遗传算法

    • 发布日期:2008-10-13
    • 文件大小:118354
    • 提供者:田园
  1. Tspev

    0下载:
  2. TSP问题的一个类库 有源代码和stl-TSP active in a library code and stl
  3. 所属分类:人工智能/神经网络/遗传算法

    • 发布日期:2008-10-13
    • 文件大小:172184
    • 提供者:无题
  1. Apriori_STL

    0下载:
  2. 使用C++STL实现的关联规则挖掘Apriori算法,代码简洁易懂。-use C STL realized Apriori association rule mining algorithm, code easy to read.
  3. 所属分类:人工智能/神经网络/遗传算法

    • 发布日期:2008-10-13
    • 文件大小:7334
    • 提供者:szg
  1. Genetic-algorithm

    0下载:
  2. Visual C++实现的基因遗传算法库源代码以演示程序Free Source Code for Genetic algorithm 2008年05月21日 C++, Windows, Win32, Visual Studio, MFC, STL, Arch, Dev, Design 基因遗传算法都是针对概率的,所以因为其随机的本质,导致其结果可能是好的,也可能是坏的,于是我们就需要一个方法确认这个解到底有多大的可用性。这是通过计算相似拟合度进行衡量的。染色体Chromosomes代
  3. 所属分类:人工智能/神经网络/遗传算法

    • 发布日期:2008-10-13
    • 文件大小:3177904
    • 提供者:chen
  1. bashuma.cpp

    0下载:
  2. C++实现的八数码问题,采用A*算法,利用STL提供的priority_q-C to achieve the eight digital issues, the use of A* algorithm, the use of STL provided priority_q
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-03-28
    • 文件大小:2089
    • 提供者:maxwell
  1. TSP_GA

    2下载:
  2. 《智能优化算法》课的作业,用遗传算法解TSP问题。其间遇到了收敛速度慢的问题,也是在这个网找到了解决方案。大家下载的应该都是那个VC6的Windows程序。我这个是从零开始写的,大家看起来应该容易懂些。C++的Console程序,VC2005下编译。全部用STL,所以旧的编译器可能会有点问题。压缩包内有谢胜利的论文:《TSP遗传算法的改进》。正是用他的贪婪交配才使得10代左右解就收敛到很好。再次赞一下!-" Intelligent Optimization Algorithms"
  3. 所属分类:AI-NN-PR

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

    0下载:
  2. A*算法实现了的寻路算法,此代码采用了STL的泛型程序设计,效率非常高!值得你的下载。-A* algorithm has to search for paths algorithm
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-04-07
    • 文件大小:342116
    • 提供者:zhangqing
  1. 189-199

    1下载:
  2. As the compact design of a muffler system within a constrained environment of a existing machine room becomes obligatory, it also becomes essential to maximize the acoustic performance of mufflers under space constraints. In this paper, the sha
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-04-16
    • 文件大小:453546
    • 提供者:payal
  1. sjtuClassicalAcmTemplete

    0下载:
  2. 上海交通大学ACM算法模板,word共90页,常用的图论算法,专题探讨,数论和重要公式,还有stl的一些讲解和实例-Shanghai Jiaotong University ACM algorithm template, word of 90 commonly used graph theory algorithms specifically examine, number theory and formula stl some explanations and examples of
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-11-16
    • 文件大小:316691
    • 提供者:sum
  1. SIS

    0下载:
  2. 复杂网络领域SIS算法模拟实现。使用C++、STL实现-SIS Codes
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-04-08
    • 文件大小:273485
    • 提供者:floristt
  1. apriori

    0下载:
  2. 数据挖掘Aprior的简易c++实现,通过string来表示数据集,没有采用STL set集合操作,因此实现起来简单一些,判断是否包含用到了动态规划算法中的最长公共子序列,思想是暴力求解,没有用到很高端的思想和算法。(Simple c++ data mining Aprior, said data set by the string, without the use of STL set collection operation, thus the realization is simple,
  3. 所属分类:人工智能/神经网络/深度学习

  1. presfntation

    0下载:
  2. 蚁群算法TSP模型的ant-cycle算法实现 尽可能少的采用STL,因此速度大为提升 另外,采用了类,因此使得在采用面向对象()
  3. 所属分类:人工智能/神经网络/深度学习

    • 发布日期:2018-01-11
    • 文件大小:3072
    • 提供者:exdstwnze
搜珍网 www.dssz.com