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

搜索资源列表

  1. ADS_DFS_Maze

    0下载:
  2. 采用stack算法的DFS搜索,有java做的界面,还有适当的注释-using stack DFS search algorithm, so java interface, the appropriate Notes
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:11.06kb
    • 提供者:黄丽雯
  1. DFSfunction

    0下载:
  2. DFS非递归函数 函数功能:图的dfs的非递归算法(用堆栈实现) 输入:图的邻接矩阵 输出:dfs序列 -DFS non-recursive function function function: dfs map non-recursive algorithm (using the stack to achieve) Input: adjacency matrix graph output: dfs sequence
  3. 所属分类:Data structs

    • 发布日期:2017-04-01
    • 文件大小:1.66kb
    • 提供者:sunshine
  1. disanti

    0下载:
  2. (1)自选存储结构,输入含n个顶点(用字符表示顶点名称)和e条边的图G; (2)指定任意顶点x为初始顶点,对图G作DFS遍历,输出DFS(深度优先)顶点序列(提示:使用栈实现DFS); (3)指定任意顶点x为初始顶点,对图G作BFS(广度遍历),输出BFS顶点序列(提示:使用队列实现BFS); (5)输入顶点x,查找图G:若存在含x的顶点,则删除该结点及与之相关连的边,并作DFS遍历(执行操作3);否则输出信息“不存在x”; (6)判断图G是否是连通图,输出信息“YES”/“NO
  3. 所属分类:Other systems

    • 发布日期:2017-04-02
    • 文件大小:2.67kb
    • 提供者:涂舒
  1. AdjList

    0下载:
  2. a code to use DFS which is achieved with stack to search the map which is stored ine the adjList,this is my first time to practice the map
  3. 所属分类:Data structs

    • 发布日期:2017-03-24
    • 文件大小:1.67kb
    • 提供者:liangyi
  1. dfs

    0下载:
  2. 深度优先搜索算法DFS的实现,1.如果有可能,访问一个领接的未访问的节点,标记它,并把它放入栈中。 2 当不能执行规则 1 时,如果栈不为空,则从栈中弹出一个元素。 3 如果不能执行规则 1 和规则 2 时,则完成了遍历。-Depth-first search algorithm DFS implementation, 1. If possible, visit a collar then outstanding access node, mark it and put it into the
  3. 所属分类:Data structs

    • 发布日期:2017-04-02
    • 文件大小:623byte
    • 提供者:陈源
  1. MY_DFS

    0下载:
  2. DFS is an uninformed search that progresses by expanding the first child node of the search tree that appears and thus going deeper and deeper until a goal node is found, or until it hits a node that has no children. Then the search backtracks, retur
  3. 所属分类:Data structs

    • 发布日期:2017-03-28
    • 文件大小:964byte
    • 提供者:synthia
  1. ZeroOne

    0下载:
  2. 求0,1序列的三种办法 第一种:递归深度搜索 第二种:栈结构深度搜索 第三张:神秘方法-Three methods to solve 0-1 sequence 1st: recursive DFS 2st: DFS on stack construction 3st: sprytical..
  3. 所属分类:Data structs

    • 发布日期:2017-04-10
    • 文件大小:696byte
    • 提供者:forgeneral
  1. Data-structure-course-design

    1下载:
  2. 上学期做的数据结构课程设计,走迷宫游戏,分别用了两种方法来实现: 第一种方法,链栈的存储结构,用递归的dfs来实现 第二种方法,回溯法求出所有通路,穷举求解法-On the data structure of the semester curriculum design, mazes game, respectively for the two methods to realize: The first method, chain stack the storage structur
  3. 所属分类:Data structs

    • 发布日期:2017-03-31
    • 文件大小:4.33kb
    • 提供者:李国强
  1. kcsj

    0下载:
  2. 数据结构课程设计的,选存储结构,输入含n个顶点(用字符表示顶点)和e 条边的图G; (2)求每个顶点的度,输出结果; (3)指定任意顶点x为初始顶点,对图G作DFS遍历,输出DFS 顶点序列(提示:使用一个栈实现DFS); (4)指定任意顶点x为初始顶点,对图G作BFS遍历,输出BFS 顶点序列(提示:使用一个队列实现BFS); (5)输入顶点x,查找图G:若存在含x的顶点,则删除该结点及 与之相关连的边,并作DFS遍历(执行操作3);否则输出信 息“无x”; (6)判断图G是否是连通图,输出信
  3. 所属分类:Data structs

    • 发布日期:2017-04-07
    • 文件大小:222.65kb
    • 提供者:王俊超
  1. prolog-DFS

    0下载:
  2. 在用prolog来实现DFS算法,基本思想是使用回溯和stack-Using the DFS in Prolog
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-04-08
    • 文件大小:13.81kb
    • 提供者:霍锋
  1. prolog-BFS

    1下载:
  2. 在用prolog实现BFS算法,基本思想不同于dfs是bfs使用queue而不是stack-Using BFS in prolog
  3. 所属分类:Data structs

    • 发布日期:2016-04-27
    • 文件大小:15kb
    • 提供者:霍锋
  1. Glyph

    0下载:
  2. An Fst state s DFS stack state.Performs depth-first visitation. Visitor class argument determines actions and contains any return data. ArcFilter determines arcs that are considered.
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-14
    • 文件大小:2.84kb
    • 提供者:pzvengven
搜珍网 www.dssz.com