CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - bfs

搜索资源列表

  1. 图论

    0下载:
  2. BFS、DFS、有向图、无向图中的各种算法的实现,可以自动生成图形。-BFS, DFS, to the map, no map to the realization of the algorithm can be automatically generated graphics.
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:120088
    • 提供者:李想
  1. Eidffakght

    1下载:
  2. 利用BFS算法解八数码问题 在3*3的方格上放着1-8数码,有一空格为0变化规则为空格可以和上,下,右,左四个相邻的数字互换, 至到和目标状态相等, 每一种状态用一个结点表示 而每个结点每次变化最多有四种结点,将这些结点依次入队列中, 例如初始结点S0,入队列后出队,将S0变化最多产生的四种结点S01,S02,S03,S04依次入队列中, 当S01出队后,产生的四种结点S11,S12,S13,S14(实际上不会有四种结点)依次入队, 每次出队时与结束结点相比较,如果
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:13589
    • 提供者:刘少人
  1. 多变量寻优

    1下载:
  2. 多变量寻优的源码,包括基本算法如下:DFP法(又称变尺度法),BFS法、一阶梯度法,共扼梯度法。-multivariate optimization of the source code, including basic algorithm is as follows : DFP Act (also known as the variable scale), BFS, a ladder degrees, a total of the accused gradient method.
  3. 所属分类:matlab例程

    • 发布日期:2008-10-13
    • 文件大小:4664
    • 提供者:陈镇静
  1. 九宫问题(八数)码分析

    0下载:
  2. 九宫问题(八数码)的一个小软件,实现了多个程序的通讯解题和一套用BFS,双端BFS,A*搜索的分析程序。 rar中含一篇解题报告、软件、及netbeans源码。 环境是JDK1.5_6-JiuGongTu (Digital 8), a small software Implementation of a number of procedures and a set of communication to solve problems with BFS, double-BFS, A * s
  3. 所属分类:JSP源码/Java

    • 发布日期:2008-10-13
    • 文件大小:1236046
    • 提供者:wind
  1. prayer

    0下载:
  2. 野人传教士问题的一种简单实现方法,用的是标准模板库实现的BFS-Savage missionaries of a simple method, using the standard template library of the BFS
  3. 所属分类:数值算法/人工智能

    • 发布日期:2012-10-22
    • 文件大小:1165
    • 提供者:吴地瓜
  1. search_short_path

    2下载:
  2. 采用A*算法完成地图路径规划功能,返回得到最短路径,实际效果优于BFS,DFS等算法。-A * algorithm using maps path planning function returns the shortest path, the actual effects are superior to BFS, algorithms such as DFS.
  3. 所属分类:GIS编程

    • 发布日期:2008-10-13
    • 文件大小:7088
    • 提供者:xiaofeng
  1. 1229_bfs

    0下载:
  2. n个石头(每相邻两个的距离是1米,最边上石头和岸的距离也是1米),礼物放在第m个石头上,青蛙第i次跳2*i-1米.问能否得到礼物.(n>=49肯定能得到礼物,n<49,可以bfs或递归)-n stones (each of the two adjacent distance of a meter, the most edge of the rocks and the shore is a distance meters), gifts m on the first stone, th
  3. 所属分类:数值算法/人工智能

    • 发布日期:2008-10-13
    • 文件大小:823
    • 提供者:
  1. BASHUGE1

    0下载:
  2. 此程序是解决八数码问题的。由于使用广度优先搜索,并且程序中用数组存储节点。所以只能进行比较简单的操作。-eight digital solve the problem. The use of BFS, and procedures with an array storage nodes. Therefore, only for a relatively simple operation.
  3. 所属分类:Windows编程

    • 发布日期:2008-10-13
    • 文件大小:1636
    • 提供者:于雷
  1. test_1_DFS_BFS

    0下载:
  2. 比较DFS与BFS 简单的实现了,小地图范围的两种寻路算法原理的比较。 左键控制,可自动寻找路径,方便观察-DFS compared with the simple realization of BFS, the small scope of the two map routing algorithms for comparison. Left control that can automatically find a path to facilitate the observation
  3. 所属分类:OpenGL

    • 发布日期:2008-10-13
    • 文件大小:29642
    • 提供者:阿申
  1. AIbashuma

    0下载:
  2. 我们解决八数码问题,广度优先搜索可能会导致内存不够用,采用启发式搜索,启发函数为f(x)=g(x)+h(x) g(x)为该结点不同于目标结点的个数,h(x)为该结点的深度,选择那f(x)结点最小的那个结点进行扩展, 引入了一个\"扩展数组[4]\"(因为扩展的结点最多只有4个),该数组保存着某个结点的0点向各个方向的扩展的结点对象,然后对该扩展数组进行分析,利用启发函数在进行递归扩展... -us solve eight digital, BFS may lead to insufficient
  3. 所属分类:人工智能/神经网络/遗传算法

    • 发布日期:2008-10-13
    • 文件大小:5507
    • 提供者:丁如敏
  1. AIbashumaJava1

    0下载:
  2. 我们解决八数码问题,广度优先搜索可能会导致内存不够用,采用启发式搜索,启发函数为f(x)=g(x)+h(x) g(x)为该结点不同于目标结点的个数,h(x)为该结点的深度,选择那f(x)结点最小的那个结点进行扩展, 引入了一个\"扩展数组[4]\"(因为扩展的结点最多只有4个),该数组保存着某个结点的0点向各个方向的扩展的结点对象,然后对该扩展数组进行分析,利用启发函数在进行递归扩展... -us solve eight digital, BFS may lead to insufficient
  3. 所属分类:人工智能/神经网络/遗传算法

    • 发布日期:2008-10-13
    • 文件大小:10381
    • 提供者:丁如敏
  1. BFS11223

    0下载:
  2. 该程序实现了 无向图的建立和广度优先搜索及输出-the program no plans to the establishment and BFS and output
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:8397
    • 提供者:王并
  1. BFS_DFS_Astar

    0下载:
  2. Implemented BFS, DFS and A* To compile this project, use the following command: g++ -o search main.cpp Then you can run it: ./search The input is loaded from a input file in.txt Here is the format of the input file: The firs
  3. 所属分类:人工智能/神经网络/遗传算法

    • 发布日期:2008-10-13
    • 文件大小:2984
    • 提供者:bo
  1. BFSFileSearch

    0下载:
  2. 这是一个基于BFS文件搜索的java代码-This is a document based on the BFS search java code
  3. 所属分类:JSP源码/Java

    • 发布日期:2008-10-13
    • 文件大小:1654
    • 提供者:tdh
  1. wide_search

    0下载:
  2. 广度优先搜索 c语言实现-BFS c Language
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:3992
    • 提供者:崔恒
  1. BFS-algorithm-matlab

    0下载:
  2. 前推回代算法matlab代码,在计算电力系统无功优化时使用的算法,很实用的-BFS algorithm matlab code, used in reactive power optimization of power system is a very practical algorithm.
  3. 所属分类:matlab

    • 发布日期:2017-04-14
    • 文件大小:2769
    • 提供者:丁顺良
  1. BFS-algorithm-learning

    0下载:
  2. BFS经典算法,准备比赛时自己写的,一看即懂。里面有比较详细的算法介绍,可供学习参考。-BFS classic algorithm, ready to play when they write, a look that is to understand. There are more detailed algorithm introduced, available for study and reference.
  3. 所属分类:Data structs

    • 发布日期:2017-05-04
    • 文件大小:264837
    • 提供者:黑所
  1. BFS&DFS

    2下载:
  2. 广度优先搜索是从某一节点开始,搜索与其线连接的所有节点,按照广度方向像外扩展,直到不重复遍历所有节点。 深度优先搜索是从某一节点开始,沿着其搜索到的第一个节点不断深入下去,当无法再深入的时候,回溯节点,然后再在回溯中的某一节点开始沿另一个方向深度搜索,直到不重复的遍历所有节点。(Breadth first search begins with a node and searches all nodes connected to its line, extending in the direct
  3. 所属分类:matlab例程

    • 发布日期:2017-12-20
    • 文件大小:1024
    • 提供者:Maxxxxx
  1. DFS BFS 图

    0下载:
  2. 深度优先遍历和广度优先遍历算法实现从定点开始的遍历序列。(Depth first traversal and breadth first traversal algorithm to achieve the starting point from the traversal sequence)
  3. 所属分类:Windows编程

    • 发布日期:2018-01-01
    • 文件大小:7168
    • 提供者:nativefaith
  1. bfs1

    0下载:
  2. bfs floodfill Breadth-first search (BFS) is an algorithm for traversing or searching tree or graph data structures. It starts at the tree root (or some arbitrary node of a graph, sometimes referred to as a 'search key') and explores the neighbor nod
  3. 所属分类:数值算法/人工智能

    • 发布日期:2018-01-02
    • 文件大小:2048
    • 提供者:kadekdwi
« 1 2 3 4 56 7 8 9 10 ... 18 »
搜珍网 www.dssz.com