搜索资源列表
-
0下载:
深度优先算法,用深度优先来遍历树结构,能够取得很好的复杂度,Depth-first algorithm, using depth-first traversal tree structure to achieve a good complexity
-
-
0下载:
solve maze with dfs and bfs
-
-
0下载:
深度优先搜索算法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
-
-
0下载:
深度优先搜索算法,代码简单易懂,对于初学者很容易理解-Depth-first search algorithm, the code easy to understand, easy to understand for beginners
-
-
0下载:
a multinode tree structure with DFS depth first search algorithm
-
-
0下载:
先深搜索算法,图论的基础算法,用于遍历图中各点,图用点边集表示,以文件方式读入-First deep-search algorithm, graph theory based algorithm for traversing the graph, Figure with a set of edges that point to papers read
-
-
1下载:
上学期做的数据结构课程设计,走迷宫游戏,分别用了两种方法来实现:
第一种方法,链栈的存储结构,用递归的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
-
-
0下载:
1) 先任意创建一个图;
2) 图的DFS,BFS的递归和非递归算法的实现
3) 最小生成树(两个算法)的实现,求连通分量的实现
4) 要求用邻接矩阵、邻接表、十字链表多种结构存储实现-A) any first create a graph 2) DFS, BFS recursive and non recursive algorithm 3) The minimum spanning tree (algorithm) to achieve, find the connected
-
-
0下载:
建立图的邻接表DFS:深度优先遍历的递归算法 BFS:广度优先遍历-Establish the adjacency table DFS: depth-first traversal of the recursive algorithm BFS: breadth-first traversal
-
-
0下载:
用邻接矩阵表示的图的类型 DFS:深度优先遍历的递归算法BFS:广度优先遍历判断从顶点vi到顶点vj是否可达-Adjacency matrix type DFS: depth-first traversal of the recursive algorithm BFS: breadth-first traversal of the judgment from the vertex vi to vertex vj is reachable
-
-
0下载:
Depth first search algorithm on graphs.
-
-
0下载:
深度优先搜索(DFS),此代码为自己写的POJ1979题的源代码。使用dfs算法简单水过。-Depth-first search (DFS), this code is to write their own POJ1979 title of the source code. Dfs algorithm is simple to use water too.
-
-
0下载:
数据结构经典算法,宽度优先遍历,c语言源代码。-Data structure classical algorithm, breadth-first traversal, c language source code.
-