CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 数值算法/人工智能 搜索资源 - depth first

搜索资源列表

  1. BDFS

    0下载:
  2. 用邻接表表示无向图的深度优先搜索遍历 有助于大家理解图的优先遍历问题-adjoining table with no plans to the depth-first search traverse help you understand the plans of the priority issues Traversing
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:1181
    • 提供者:ps
  1. 图搜索策略

    0下载:
  2. 一个使用Java实现的人工智能的图搜索策略程序——酒九宫图问题 人工智能-图搜索策略-演示程序-使用说明 程序简介 在人工智能领域,对隐式图的搜索是求解问题的一种基本方法,本程序通过使用多种图搜索策略,对 重排九宫问题进行求解,演示了“广度优先搜索”、“深度优先搜索”、“有界深度优先搜索”、 “最好优先搜索”和“局部择优搜索”五种基本的图图搜索策略。 整个程序使用了动画技术,界面设计美观友好,使用方便。-use a Java artificial intelligence plans Searc
  3. 所属分类:人工智能/神经网络/遗传算法

    • 发布日期:2008-10-13
    • 文件大小:29635
    • 提供者:陈凯
  1. 图的操作界面

    0下载:
  2. 图邻接表的建立,深度优先遍历,.广度优先遍历,最小生成树,拓扑排序,单源点到其余各个顶点的最短路径等对图的操作!VC界面!-plans to establish the adjacent table, depth-first traversal. Breadth priority traversal, the minimum spanning tree, topological sorting, single-source all of the rest of the vertices such
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:65237
    • 提供者:陈青侠
  1. 0801

    0下载:
  2. 功能:构造图,并进行图的深度优先遍历(邻接表存储结构),图的广度优先遍历,内附详尽的源代码说明-function : tectonic map, and map depth-first traversal of the (storage structure adjacent table), the breadth of the plan priority traversal, enclosing a detailed note of the source code
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:2714
    • 提供者:孙廷
  1. 两种遍历图的方法

    0下载:
  2. 熟悉图的两种常用的存储结构,以及在这两种存储结构上的两种遍历图的方法,即深 度优先遍历和广度优先遍历。进一步掌握递归算法的设计方法。 -familiar with the plans of two commonly used storage structure, and the two storage structures on the two traverse map, that depth-first traversal and breadth priority traversal.
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:1629
    • 提供者:王茜
  1. Win32Maze

    0下载:
  2. Win32下立体迷宫程序,含自动求解,可求迷宫最短路径和所有路径,分别用广度优先搜索和深度优先搜索两种方法实现,欢迎讨论。-Win32 three-dimensional maze procedure, including automatic solution Stepping maze shortest path and all trails. priorities were used to search breadth and depth-first search in two ways,
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:24914
    • 提供者:enderlw
  1. depth-first-algorithm

    0下载:
  2. 数据结构经典算法C++实现(五):深度优先(邻接矩阵,递归)算法-Data structures classical algorithm C++ of realization (e): depth-first (recursive) algorithm, the adjacency matrix
  3. 所属分类:Data structs

    • 发布日期:2017-03-28
    • 文件大小:102526
    • 提供者:carmen
  1. 8queens

    0下载:
  2. 这是八皇后算法,自己写的,但是主题思想一样,深度优先,大家参考-This is the eight Queen s algorithm, wrote it myself, but the main idea, the depth-first, we refer to
  3. 所属分类:Data structs

    • 发布日期:2017-04-16
    • 文件大小:34106
    • 提供者:han
  1. Depth-First-Traverse

    0下载:
  2. 此代码为“图的深度优先遍历”的源代码,图的存储形式为邻接矩阵,里面有图的邻接矩阵存储的代码,有深度优先遍历的算法,还有验证的主函数。-This code for the " depth-first traversal map" of the source code, Figure storage form of adjacency matrix, there are plans stored in the adjacency matrix code, a deep traver
  3. 所属分类:Data structs

    • 发布日期:2017-03-29
    • 文件大小:2138
    • 提供者:熊龙龙
  1. dfsorigin

    0下载:
  2. DFS in Matlab, Depth First Search
  3. 所属分类:matlab

    • 发布日期:2017-04-10
    • 文件大小:674
    • 提供者:Supermachi
  1. DFS

    0下载:
  2. Depth-first search (DFS) is an algorithm for traversing or searching a tree, tree structure, or graph. One starts at the root (selecting some node as the root in the graph case) and explores as far as possible along each branch before backtracking.
  3. 所属分类:Algorithm

    • 发布日期:2017-04-02
    • 文件大小:1213
    • 提供者:a32
  1. Depth-first-search

    0下载:
  2. 深度优先搜索的搜索过程类似树的先序遍历,也叫回溯法。-Depth-first search of the search process similar to the preorder traversal of the tree, also known as backtracking.
  3. 所属分类:Data structs

    • 发布日期:2017-03-26
    • 文件大小:45460
    • 提供者:lx
  1. depth-first

    0下载:
  2. 可以实现树的深度优先遍历,编译通过,可以即时使用。-It Can achieve a depth-first traversal of the tree, compile, and can immediately use
  3. 所属分类:Data structs

    • 发布日期:2017-03-31
    • 文件大小:12540
    • 提供者:wushanshan
  1. Depth

    0下载:
  2. 实现图的邻接表存储结构及一些基本操作函数。在此基础上实现图的深度遍历算法-The realization of graph adjacency list storage structure and some basic operation function. On the basis of the realization of graph depth-first traversal algorithm
  3. 所属分类:Data structs

    • 发布日期:2017-03-23
    • 文件大小:2172
    • 提供者:Loben
  1. graph-depth-first-search

    0下载:
  2. 基于VC6.0,实现图的深度优先搜索算法-graph depth-first search
  3. 所属分类:Data structs

    • 发布日期:2017-04-02
    • 文件大小:850
    • 提供者:刘兆好
  1. Depth-first-traversal

    0下载:
  2. 1、编写图的邻接表表示法的数据结构。 2、编写用邻接表创建图的函数 3、用深度优先遍历的方法输出顶点序列-1, write the adjacency table shows the data structure of the Act. 2, written with the adjacent table to create a graph function output sequence of vertices with a depth-first traversal methods
  3. 所属分类:Data structs

    • 发布日期:2017-11-06
    • 文件大小:81757
    • 提供者:YHL
  1. depth-search

    0下载:
  2. Depth-First-Search in LISP
  3. 所属分类:Data structs

    • 发布日期:2017-04-12
    • 文件大小:1065
    • 提供者:Luis
  1. Depth-First-Search

    0下载:
  2. 个人实现的深度优先搜索代码。水平有限,请大家指正。-Implementation of a depth-first search algorithm.
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-03-26
    • 文件大小:20621
    • 提供者:linap
  1. depth-first-traversal

    0下载:
  2. 这是一个数据结构中二叉树的邻接链表的建立以及广度优先遍历和深度优先遍历的算法,对于初学者来说,这样的算法简单易懂,非常容易上手-This is to establish and breadth of a binary tree data structure adjacency list first traversal and depth-first traversal algorithm, for starters, this algorithm is simple to understand
  3. 所属分类:Data structs

    • 发布日期:2017-03-26
    • 文件大小:2369
    • 提供者:陈新
  1. Maze-depth-first-algorithm

    0下载:
  2. 迷宫深度优先算法,深度优先是按照一定的顺序查找完一个分支,再查找另外一个分支,直到找到目标为止。-Depth first is according to certain order to find a branch, then find another branch, until find the target.
  3. 所属分类:Data structs

    • 发布日期:2017-04-12
    • 文件大小:1158
    • 提供者:黄强
« 12 3 4 5 6 7 8 9 10 ... 19 »
搜珍网 www.dssz.com