搜索资源列表
-
0下载:
深度优先搜索所遵循的搜索策略是尽可能“深”地搜索图。在深度优先搜索中,对于最新发现的结点,如果它还有以此为起点而未搜过的边,就沿着边继续搜索下 去。当结点v的所有边都已被探寻过,搜索将回溯到发现结点v有那条边的始结点。这一过程一直进行到已发现从源结点可达的所有结点为止。如果还存在未被发现 的结点,则选择其中一个作为源结点并重复以上过程,整个过程反复进行直到所有结点都被发现为止-Followed by depth-first search strategy is to search "
-
-
0下载:
用邻接矩阵法建一无向连通图(顶点信息为字符),分别用dfs(深度优先搜索)和bfs(广度优先搜索)遍历,输出图中顶点信息并验证。-Adjacency matrix to build an undirected connected graph (vertex information for characters), respectively dfs (depth-first search), and bfs (breadth-first search) traversal, the output
-
-
0下载:
The basis of branch and bound algorithms is a ranking function. The ranking function assigns a value to each node in the graph. At each step, a branch and bound algorithm uses the ranking function to decide which node to expand next. In contrast, the
-
-
0下载:
球形解码( Sphere Decoder,SD) 算法能以较低的复杂度实现多输入多输出( Multiple Input Multiple Output,MIMO) 系统的最优检测,是当前受到普遍关注的 MIMO 检测算法。对当前球形解码 的 主 要 研究 成 果 进行 综 述,根 据 搜索策略进行分类,重点分析基于深度优先策略的 VB、CL 和基于宽度优先策略的 K-Best、FSD 算法,并且讨论了几种初始半径的选择方法,最后在准静态平坦瑞利衰落环境下对上述算法进行了性能仿真比较-Sphere
-
-
0下载:
数据结构中介绍的常见经典算法,排序、二叉树深度、广度优先搜索、高精度加减乘除等-Common data structures described in the classical algorithms, sorting, binary tree depth, breadth-first search, high-precision addition, subtraction, etc.
-
-
0下载:
图 深度优先搜索遍历和 邻接矩阵,闫蔚敏版,简单易懂,适合平时交作业(Graph depth first search and adjacency matrix, Yan Yumin version, simple, suitable for everyday homework)
-