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

搜索资源列表

  1. Sieger

    1下载:
  2. 围棋人机对弈程序源码 此版本目前还只能下布局阶段,但很多用于中盘的数据结构及算法已实现。含2000多基本定式库。-procedures source of this version has only under the layout stage, but many were used to set the data structure and algorithm has achieved. Containing more than 2,000 for the basic mode.
  3. 所属分类:人工智能/神经网络/遗传算法

    • 发布日期:2008-10-13
    • 文件大小:526253
    • 提供者:方哥
  1. C的APRIORI程序

    1下载:
  2. 用C实现的APRIORI算法,希望对学习数据结构和算法的朋友有所帮助-C analysis algorithm to achieve the hopes of learning algorithms and data structures help a friend
  3. 所属分类:人工智能/神经网络/遗传算法

    • 发布日期:2008-10-13
    • 文件大小:123529
    • 提供者:yu
  1. 决策树c4.5-r8的windows版本

    1下载:
  2. 用c++实现的决策树算法,windows环境下,希望对学习数据结构和算法的朋友有所帮助。-achieve with the Decision Tree Algorithm, windows environment, and I hope to learn from data structures and algorithms friends help.
  3. 所属分类:人工智能/神经网络/遗传算法

    • 发布日期:2008-10-13
    • 文件大小:149316
    • 提供者:yu
  1. 8数码A算法

    0下载:
  2. 设计说明:1。数据结构和表示:程序用1、2、3、4分别表示将右、上、左、下的数字块移动到空格之中。采用典型的树+链表结构,每种局面产生一个BoardState类。出于避免走法顺序列表被过多复制的考虑,在树结构中保存局面的继承关系。每种新的局面产生后,引用估值函数产生f的值,再根据大小将其插入链表之中,以便实现“优先展开f值小的节点”。Solve()函数在成功解决问题之后保存一个走法序列供输出并返回零,而失败则返回失败处的节点层数。(具体的判断方法见后文)-Design Notes : 1. Da
  3. 所属分类:人工智能/神经网络/遗传算法

    • 发布日期:2008-10-13
    • 文件大小:13600
    • 提供者:陈士骞
  1. phoenix

    0下载:
  2. 模式识别的两个重要算法:剃度下降法,固定增量法.另付数据结构中:高级排序算法,波兰式-two important pattern recognition algorithm : tonsure decline, fixed increment. Extra data structure : High ranking algorithm, Poland -
  3. 所属分类:人工智能/神经网络/遗传算法

    • 发布日期:2008-10-13
    • 文件大小:3545
    • 提供者:吕经纬
  1. LBTree

    0下载:
  2. 用VC。NET2005实现优秀的最近邻搜索算法LB-TREE的模拟和图形显示。具有建立优良数据结构和搜索功能-VC.NET2005 achieve outstanding nearest neighbor search algorithm LB-TREE simulation and graphics. With excellent data structure and search functions
  3. 所属分类:人工智能/神经网络/遗传算法

    • 发布日期:2008-10-13
    • 文件大小:3697074
    • 提供者:yangtao
  1. heibaiqi

    0下载:
  2. 五子棋是一种受大众广泛喜爱的游戏,这里介绍五子棋程序的数据结构、评分规则、胜负判断方法,重点分析了搜索算法,并在传统的博弈算法在五子棋应用中进行一些改进,从而使剪枝更有效,运算性能更好。改进包括:不使用closed表;改变棋盘搜索顺序;增加记录最大棋盘信息的指针。实验证明,这几点改进对提高效率有很高帮助。
  3. 所属分类:人工智能/神经网络/遗传算法

    • 发布日期:2008-10-13
    • 文件大小:186496
    • 提供者:丫头
  1. E_Puzzle

    0下载:
  2. 原创!广度优先搜索和Astar算法求解八数码问题。是学习搜索算法和数据结构的较好参考源码。
  3. 所属分类:人工智能/神经网络/遗传算法

    • 发布日期:2008-10-13
    • 文件大小:3665
    • 提供者:lys
  1. SPath

    0下载:
  2. 原创,A-star算法求解最短路径,寻路问题。 求解效率高,且对于理解A-Star算法和数据结构链表操作有非常有用。
  3. 所属分类:人工智能/神经网络/遗传算法

    • 发布日期:2008-10-13
    • 文件大小:2363
    • 提供者:lys
  1. DM4

    0下载:
  2. 执行流程: 1. 用户输入参数:K的选择,训练数据,测试数据的路径; 2. 读取训练数据集和测试数据集文件,用ArffFileReader类读取并组织起InstanceSet数据结构; 3. 利用上面的相似度量标准,对每一个测试集中的Instance,计算与其最相似的K个训练集中的Instance,通过投票进行分类,将分类结果存储经Instance的成员变量targetGuess中; 4. 对分类结果进行度量,包括分类正确率,各种类别实例的Precision,Recall;Con
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-04-03
    • 文件大小:129640
    • 提供者:xsl
  1. pegjump

    0下载:
  2. 设计一类peg jump问题的求解系统,初步掌握智能搜索算法中的盲目搜索和启发式搜索这两类基本方法,同时通过具体的问题体会搜索算法、数据结构、程序设计等知识的综合应用。-Peg jump for a class of design problem solving systems, intelligent search algorithm for the initial grasp of the blind search and heuristic search these two types o
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-03-31
    • 文件大小:38517
    • 提供者:chenyanli
  1. heapSort

    0下载:
  2. 简单的堆排序.对于初学数据结构的同学有用.-A simple heap sort. For the beginner students useful data structures.
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-04-03
    • 文件大小:883314
    • 提供者:三水寿
  1. ronghe

    0下载:
  2. 基于神经网络与数据融合的结构损伤识别理论研究-Data fusion based on neural network and theoretical study of structural damage identification
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-05-25
    • 文件大小:8268667
    • 提供者:周旭
  1. MazeStack

    0下载:
  2. 使用数据结构栈的方式实现迷宫寻路 人工智能机器人算法 希望对大家有所帮助-Stack data structure using the realization of artificial intelligence robot maze pathfinding algorithm we want to help
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-04-01
    • 文件大小:94151
    • 提供者:王俊
  1. ExeptSystem

    0下载:
  2. 基于神经网络方法的专家系统源代码,实现了神经网络数据结构下的专家系统-Neural network based expert system source code, to achieve a neural network expert system data structure
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-05-02
    • 文件大小:682919
    • 提供者:张玉彬
  1. ant_colony_algorithm

    1下载:
  2. 蚁群算法编程实现,在VC下调试,可用于大二学生学习人工智能或数据结构-Ant colony algorithm programming, debug in VC can be used for second year students of artificial intelligence or data structure
  3. 所属分类:人工智能/神经网络/遗传算法

    • 发布日期:2013-10-18
    • 文件大小:253874
    • 提供者:zhangyuxiang
  1. MIT_AI_lec_02

    0下载:
  2. 麻省理工人工智能讲义2 关于人工智能领域相关数据结构,查找算法-MIT AI Lecture 02 search algorithm (tree graph ect.) Search plays a key role in many parts of AI. These algorithms provide the conceptual backbone of almost every approach to the systematic exploration of altern
  3. 所属分类:AI-NN-PR

    • 发布日期:2016-01-26
    • 文件大小:1977344
    • 提供者:dayuan
  1. ISODATA

    0下载:
  2. VC下编写的基于ISODATA算法的模式识别程序,内含配套的实验数据,注释很清楚,数据结构完整,很合适初学模式识别的朋友借鉴-VC prepared ISODATA algorithm based on pattern recognition program that includes matching the experimental data, a comment is clear, the data integrity of the structure, it is an appropri
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-04-16
    • 文件大小:53694
    • 提供者:Ender
  1. SHENGJINGC2

    0下载:
  2. 采用结构体及链表来实现神经网络的结构 分为实例结构体、层结构体和网络结构体 数据结构的设计-Using adaptive learning algorithm to optimize the efficiency of the learning algorithm source code in order to reduce the number of learning The skills and knowledge are limited
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-04-07
    • 文件大小:3383
    • 提供者:zhangmin
  1. SHUYOUGUANSHEJI

    0下载:
  2. 采用结构体及链表来实现神经网络的结构 分为实例结构体、层结构体和网络结构体 数据结构的设计-Reference data structure design, "Artificial Neural Networks" (edited by Rui Ma, Beijing: Mechanical Industry Press, 2010,7) a book Optimized learning algorithm is also reference to the book
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-05-12
    • 文件大小:2834858
    • 提供者:zhangmin
« 12 3 4 »
搜珍网 www.dssz.com