搜索资源列表
pso_c+
- 这是一个pso程序源代码,pso源于对鸟群捕食行为的研究而发明的进化计算技术,属于进化算法的一种。 优点:收敛速度快,具有全局寻优能力,而且编程简单,易于推广使用。 -This is a pso source code, pso out of the flock of predatory behavior and evolutionary computation invention of the technology is an evolutionary algorithm. Advant
Predator-Prey
- 使用repast simphony软件仿真,java语言写捕食链,狼吃羊,羊吃草等过程-Repast of the simphony software simulation, the Java language to write the chain of prey, wolves eat sheep and sheep grazing process
fish-eat
- 一款手机安卓系统的大鱼吃小鱼的游戏代码,可实现大鱼的移动以及捕食的动作。-A mobile phone android game code of the big fish eat small fish, which can realize the movement of the big fish and hunt.
Sanke
- 贪吃蛇游戏创建三个模块,分为Map,Sanke,Gui。Map类应用二维数组实现地图布局。Snake类主要运用GUI中监听Button按钮的颜色变化,来实现舍得移动和捕食。并在地图中随机出现食物。Gui通过键盘监听器使得蛇移动方向。此次项目让我感受到编程的乐趣!(Snake game to create three modules, divided into Map, Sanke, Gui. Map class uses 2D array to realize map layout. Snake
粒子群算法源码
- 粒子群算法(PSO)属于群智能算法的一种,是通过模拟鸟群捕食行为设计的。假设区域里就只有一块食物(即通常优化问题中所讲的最优解),鸟群的任务是找到这个食物源。鸟群在整个搜寻的过程中,通过相互传递各自的信息,让其他的鸟知道自己的位置,通过这样的协作,来判断自己找到的是不是最优解,同时也将最优解的信息传递给整个鸟群,最终,整个鸟群都能聚集在食物源周围,即我们所说的找到了最优解,即问题收敛。