搜索资源列表
迷宫求解(wjluo)
- 三种算法实现的迷宫出路求解,枚举、递归、还有栈。-three Algorithm way to solve the maze, enumeration, recursive, there are stacks.
Tree
- 人工智能的程序,用递归实现了剪枝算法.相信会十分有用的.
Java语言TSP递归程序的优化
- 因为递归程序运行的效率一般都比较低,本程序用java语言来实现TSP递归程序的优化-because recursive program run average efficiency are low, the procedure used java language to achieve TSP recursive process optimization
migongxunlu.rar
- 实现迷宫自动寻路的一个机器人算法,使用了递归算法及堆栈操作,很具有参考价值,Automatically achieve the maze routing algorithm for a robot, the use of a recursive algorithm and the stack operation, is a reference value
Java-tSP2
- Java语言TSP递归程序的优化,采用新型递归模式设计实现的。-Java language TSP optimization of recursive procedures, recursive model using the new design.
winep_code
- 这是一个典型的产生式系统的算法题.用的是有界深度优先的递归算法,是用C++Builder4.0写的.这也是人工智能或者程序设计竞赛题中最基本最常用的算法.如果自己动手编程实现了一个这样的题目,那么很多相关的题目也就都一样可以做了,比如"四皇后问题","推箱子问题","传教士和野人问题"等等。 利用深度优先的算法都是不一定能找到最优路径的,而且如果解路径过长的话还可能会搜索失败.如果保证要找到最优路径需要用另一些算法,比如宽度优先算法.无论是哪一种算法,如果问题稍微复杂一点的话,都要解决"
passliver
- 过河问题求解算法,采用C语言实现,利用递归算法求解出最后可行的方案,而且人数是可变的。-the way to pass the liver
Recursive.algorithm.game
- Recursive algorithm for nine serial game九连环游戏算法递归实现 -Recursive algorithm for nine serial game
string
- 本程序采用分类询问的模式,对要求的方法一一用函数实现,并在函数中根据客户的要求调用子函数。通过递归调用todo()函数,不断实现用户想要实现的功能,最后以输入0,结束循环,程序结束。-The inquiry procedure uses classification model, the methods required to achieve one by one with the function and function call Functions according to custome
recursion-in-the-expert-systems
- 在智能故障诊断中, C(C++)语言具有多方面优于传统人工智能语言(如LISP、PROLOG)的特性, 它对递归的支持使得用 其来开发故障诊断专家系统成为可能。本文研究了故障诊断专家系统开发中用到的递归方法及其基于C(C++)的实现, 具体 包括: 动态数据库设计中结构体的递归定义, 推理机设计中函数的递归调用等。针对知识推理中易出现的“循环递归”问题, 提出了一种基于“因果网络直观图”的解决方法。-C ( C++ )language possesses characteristic
not-recursive-realized
- 该程序是分段函数: akm(m,n){ n+1 m =0 akm(m-1,1) m!=0,n=0 akm(m-1),(akm(m,n-1)) m!=0,n!=0 实现递归和非递归的算法 非递归算法可能使计算时间减少-The program is piecewise function: Akm (m, n) { N+ 1 m = 0 Akm (m-1, 1) m! = 0, n = 0 Akm (m-1) (akm (m, n-1)) m! = 0, n.=
migong
- 用有限状态机实现的迷宫求解。 和大部分的迷宫程序相同,迷宫的解决方法是 递归或者是用堆栈来模拟递归,这个程序也不例外。但是我们知道普通的迷宫求解程序通常是用一种递归的方法来实现的。程序从一开始运行就不断的进行递归,直到找到迷宫的出口。但是这对一个演示程序来说是不行的,我们需要演示一个迷宫行走者在迷宫中的行走过程。 因此我们用另外的方式来实现,我们首先要需要一个状态机来记录当前行走者的状态,比如说他是处在行走还是寻找一个新的可以到达的地方的状态,因此我使用了一个有限状态机来
Hanno
- Hanno塔非递归实现,用c写的非递归实现Hanno塔问题。-The Hanno tower of non-recursive
Fuzzy-Neural-Network-by-matlab
- 这是一个四个不同的S函数实现集合的递归模糊神经网络(RFNN)。该网络采用了4组可调参数,这使得它非常适合在线学习/操作,从而可应用到系统识别等方面。-This is a collection of four different S-function implementations of the recurrent fuzzy neural network (RFNN) described in detail in [1]. It is a four-layer, neuro-fuzzy net
LinearReg
- 线性回归的,递归实现,可被编译成DLL,欢迎交流-The realization of recursive linear regression,, can be compiled into DLL, welcomed the exchange of
RNNBlindequalization
- 将递归神经网络与横模CMA盲均衡结合了起来,对8000个数据进行预测,实现了一定的盲均衡功能-The recurrent neural network with the CMA blind equalization combined transverse mode up to 8000 data to predict, to achieve a certain blind equalization
NCBKRVN
- 利用递归和非算法实现二叉排序树,并完成各种功能()
beautifulsoup4-4.6.0.tar
- 递归算法是一种直接或者间接调用自身函数或者方法的算法。Java递归算法是基于Java语言实现的递归算法。递归算法的实质是把问题分解成规模缩小的同类问题的子问题,然后递归调用方法来表示问题的解。(Recursive algorithm is an algorithm that directly or indirectly calls its own function or method. Java recursive algorithm is based on the Java language
469749
- 用n×n抖动矩阵实现指定区域的半色调抖动,主要部分是抖动矩阵的递归实现,此部分较难()
iferative
- 非递归算法实现线索化二叉树,其中包含递归算法,()