搜索资源列表
ExampleforAStar
- 一个用VC编写的,二维场景下的移动Agent路径搜索A*算法-one prepared by the VC, two-dimensional scenes of the Mobile Agent Route A * search algorithm
AboutGraph
- 1. 掌握图的基本存储方法; 2. 掌握有关图的操作算法并用高级语言实现; 3. 熟练掌握图的两种搜索路径的遍历方法。-1. To master plan the basic storage methods 2. Information on the plans and the operation of algorithms to achieve high-level language 3. The master plan of the traverse path of the
Dijkstra-path
- 在已存在的一些最短路径算法测试总结的基础上,根据GIS中网络计算的实际情况,从网络结构的拓扑表示以及Dijkstra算法中快速搜索技术的实现实现方法。-Already exist in some of the shortest path algorithm test summary based on the GIS, the actual situation of network computing, from the topology of the network structure, as
tusousuo
- 状态图实际上是一类问题的抽象表示。事实上,有许多智力问题(如梵塔问题、旅行商问题、八皇后问题、农夫过河问题等)和实际问题(如路径规划、定理证明、演绎推理、机器人行动规划等)都可以归结为在某一状态图中寻找目标或路径的问题。因此,研究状态图搜索具有普遍意义。 -State diagram is actually a class of abstract representation of the problem. In fact, there are many mental problems (s
MATLAB
- 包含matlab常用的函数指令,按功能分类的 包括 1.通用信息查询 2.工作空间管理 3.管理指令及函数 4.搜索路径的管理 5.指令窗控制 6.操作系统指令 7.运算符操作 8.编程语言结构 9.矩阵及相关操作等-Contains the matlab function commonly used commands, according to functional categories, including 1. General information
11
- 基音周期是语音信号的一个重要参数。为了在低延 时条件下准确地提取语音基音周期参数, 提出了一种基于动 态规划的单路径搜索算法-Abstract: P itch is one of the mo st impo rtant parameters fo r describing speech characteristics. A one2way p itch track ing algo rithm based on dynam ic p rogramm ing was develo
TheStudyofAAlgorithminImplementingofGame
- 图搜索技术能够从图中寻找一条从起点到目标点的路径. 围绕游戏寻径问题,介绍了如何确定启发式函数进行启发式搜索,并把A*算法用程序加以实现,从而证明A*算法可以解决游戏中的寻径问题-Map search technology to search from a map to the target point from the starting point of the path. Around the game routing problem, describes how to determine
zuiduanlujingfenxi
- Dijkstra算法是求解网络中最短路径的精典算法,文中通过改变图的存储结构及搜索方法,减少了内存存储空间,缩短查询时间,以提高该算法在嵌入式GIS系统中路径优化的效率。-Dijkstra algorithm is to solve the classic shortest path network algorithm, the paper map by changing the storage structure and the search for ways to reduce the me
nothing
- 这是一个搜索的方案搜索在房间内的最短路径问题-This is a search program searches the shortest path in the room question
基于最短路径的粘连字符分割的文章
- 基于最短路径的粘连字符分割的文章。以灰度文本图像为处理对象,从上往下搜索找到最短路径。一篇很好的文章。-An OCR-Independent Character Segmentation Using Shortest-Path in Grayscale Document Images
A* 算法详细解答
- 详细介绍了A*搜索算法的原理和应用,使用与路径规划和机器人路径搜索
4
- 针对目前图形处理器(GPU) 上的动态数据处理问题,在分析现有并行单源最短路径(SSSP) 算法的基础上,对 GPU上的Moore SSSP算法进行并行化设计与实现。搜索时,综合应用层次化任务分配、层次化工作队列、层次化 Kernel 调用等策略。在不同类型图数据上进行实验测试,实验结果表明,该算法能有效减少空线程开销、访存开销以及同步时间。-For dynamic data processing on the graphics processor (GPU), the analysis of
swarm-optimization-algorithm-
- 子群优化算法,并把次算法用于求解旅行商问题.为了增强算法的局部搜索能力,在改进的算法中加入倒置,局部搜索等方法,同时利用遗传算法的全局搜索能力强的特点对求到的解再进行优化,同时,对于搜索全局最优路径方面,通过应用消除交叉路径的方法进行了优化.-Sub swarm optimization algorithm, and the second algorithm is used to solve the traveling salesman problem. In order to enhance
TabuSearch
- 禁忌搜索算法程序,完全解决了旅行商最短路径问题-Tabu search algorithm, completely solve the traveling salesman problem shortest path
12
- 一种很好的分布式网络中最短路径搜索算法,在很多场合能用上。-A good distribution network in the shortest path search algorithm can be used on many occasions.
matlab
- 以42个地点为例,如果要列举所有路径后再确定最佳行程,那么总路径数量之大,几乎难以计算出来。多年来全球数学家绞尽脑汁,试图找到一个高效的算法TSP问题在物流中的描述是对应一个物流配送公司,欲将n个客户的订货沿最短路线全部送到。如何确定最短路线。 TSP问题最简单的求解方法是枚举法。它的解是多维的、多局部极值的、趋于无穷大的复杂解的空间,搜索空间是n个点的所有排列的集合
MATLABmain-function
- 常用指令工作空间管理管理指令和函数搜索路径的管理(指令窗控制 运算符和特殊算符-Management of common commands workspace management management instructions and functions of the search path (command window control operators and special operators
JAVA-Eight-digital-problem
- 九宫排字问题(又称八数码问题)是人工智能当中有名的难题之一。问题是在 3×3 方格盘上,放有八个数码,剩下第九个为空,每一空格其上下左右的数码可移至空格。问题给定初始位置和目标位置,要求通过一系列的数码移动,将初始位置转化为目标位置。本文介绍用普通搜索方法、双向广度搜索和启发式搜索如何缩短寻找路径的时间,以及各算法间的利与弊。-Jiugong typesetting problem (also known as eight digital problem) is one of famous pr
11
- 在线百度地图,实现国内路径搜索与查找,经过自己修改的百度api。-Online Baidu map, to achieve domestic route search and find, through their changes of Baidu api.
matlab文档
- ATLAB由一系列工具组成。这些工具方便用户使用MATLAB的函数和文件,其中许多工具采用的是图形用户界面。包括MATLAB桌面和命令窗口、历史命令窗口、编辑器和调试器、路径搜索和用于用户浏览帮助、工作空间、文件的浏览器。随着MATLAB的商业化以及软件本身的不断升级,MATLAB的用户界面也越来越精致,更加接近Windows的标准界面,人机交互性更强,操作更简单。