搜索资源列表
search
- 基于Java的A*智能搜索算法,针对迷宫问题。
JavaANNToolkit
- 人工智能-神经网络算法,包含BP算法等多种神经网络算法。对人工期智能感兴趣朋友,可以研究一下。
wuziqi3
- 一个用java 开发的 使用剪枝算法高效五子棋程序,实现3层搜索,高智能- java development with the use of efficient pruning algorithm Gobang procedures, the realization of 3-layer search, intelligent
ant_code
- java实现的基本蚁群算法,蚁群算法是一种智能算法-the realization of the ant colony algorithm java
JAVA
- 在城市智能交通中,经常会用到最短路径的问题,比如找最佳的行车路线等,Dijkstra算法做为最经典的求解方法,为我们指明了方向.不过真正想让我了解该算法的原因是在学习ICTCLAS的N-最短路径算法。-Intelligent Transportation in the city, often used the issue of the shortest path, for example, to find the best travel routes, Dijkstra s algorithm
Othello
- 使用java编写的GUI的黑白棋游戏,搜索算法采用经典的博弈树,并在此基础上做了大量优化,我的评估函数采用了Simon M. Lucas 和 Thomas P. Runarsson 在其合作发表的 Temporal Difference Learning Versus Co-Evolution for Acquiring Othello Position Evaluation 中通过对比即时差分学习(TDL,Temporal Difference Learning)和协同进化(CEL,Co-
TC1TLC
- 算法设计,用Java语言编写的智能交通中的信号灯控制方法-Algorithm design, using Java language in the intelligent traffic signal control method
GA
- 遗传算法在求解多约束条件下的组合优化问题有独特优势,本代码是关于用遗传算法解决智能组卷问题的好例子。-Of genetic algorithm in solving the multi-constrained optimization problem under the condition of a unique combination of advantages, this code is on the use of genetic algorithm to solve the problem
Knife
- 模糊集实现的刀片处理算法,来源于计算智能中的仿生学:理论与算法中的java实现部分-Fuzzy Set blade processing algorithms from computational intelligence in bionics: Theory and algorithm realization of part of the java
wuziqi
- 这个五子棋系统,并没有用到什么特殊的算法,只是基于自己的理解写的,智能一般。但这个系统当时是想联系一下jsp跟javascr ipt,所以是基于网站形式的,还有就是这个系统并没有用到现成的ajax框架,是自己根据Javascr ipt的JSON跟XMLHTTP实现的无刷新效果-This Gobang system and not used any special algorithm, is based on their understanding of written, intelligent
Ccurve
- 智能CAD上面的一个作业:分形图形算法与程序设计之C曲线JAVA实现-Intelligent CAD on top of a job: Fractal graphics algorithms and programming JAVA implementation of the C curve
ann
- 计算智能中蚁群算法功能的编码实现的源代码-Computational Intelligence in the ant colony algorithm function encoding the source code to achieve
Algorithms-of-the-intelligent-web
- 智能web算法英文原版, 描述利用各种技术对web应用进行智能化的处理; 涵盖五类重要算法:搜索、推荐、聚类、分类和分类器融合-This is the English original version of <Algorithms of the Intelligent Web>. It is about the use of techniques that enable the intelligent processing of information.This
examsystem_SJTU_CS_startear
- examsystem智能组卷系统,其中组卷算法采用经典的遗传算法,图形化界面,采用MVC系统开发模式,连接sql2000数据库-Examsystem intelligent system, including group algorithm using the roll classic genetic algorithm, the graphical interface, the MVC system development mode, sql2000 database connection
EightDigit
- java编写的八数码,使用智能算法。-java written eight digital intelligent algorithm processing.
ThinkingInJava
- 探讨了矩形件和任意形状图案的排样优化问题的遗传算法求解,提出了剩余矩形表示法和条形图表示法。对于矩形排样,剩余矩形表示法提高了板材利用率,更容易得到较优解。对于任意形状图案排样,条形图表示法直接利用位图排样,不对图案作任何限制(允许有孔洞),排样速度很快。该算法已应用于智能印花分色系统中-very good
hs
- 和声搜素算法是一种新的启发式智能算法,用于解决最小值问题。-Harmony search algorithm is a new heuristic intelligent algorithm for solving the minimum problem.
CRO
- Chemical Reaction Optimization (CRO)是一种新兴的智能算法,PaperArtificial Chemical Reaction Optimization Algorithm for global optimization详细介绍了该算法,CRO为其Java代码,供新学者参考
old
- 群体智能算法,烟花算法,java代码,-fireworks algorithm
粒子群算法源码
- 粒子群算法(PSO)属于群智能算法的一种,是通过模拟鸟群捕食行为设计的。假设区域里就只有一块食物(即通常优化问题中所讲的最优解),鸟群的任务是找到这个食物源。鸟群在整个搜寻的过程中,通过相互传递各自的信息,让其他的鸟知道自己的位置,通过这样的协作,来判断自己找到的是不是最优解,同时也将最优解的信息传递给整个鸟群,最终,整个鸟群都能聚集在食物源周围,即我们所说的找到了最优解,即问题收敛。