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

搜索资源列表

  1. bipartite_graph_maximum_matching

    0下载:
  2. 三种二项图最大匹配算法.包括使用广度优先搜索以及深度优先搜索的匈牙利算法,以及Hopcroft-Karp算法。-Three of bipartite graph maximum matching algorithms. Including 1.Hungarian with DFS 2.Hungarian with BFS 3.Hopcroft-Karp algorithm
  3. 所属分类:source in ebook

    • 发布日期:2017-03-25
    • 文件大小:1667
    • 提供者:lj-leech
  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
    • 文件大小:623
    • 提供者:陈源
  1. algorithm

    0下载:
  2. 九个经典算法,冒泡排序,快速排序,堆排序,矩阵相乘最优次序,分治递归法求最大元,次大元和最小元,基数排序,二叉排序树,图的深度优先搜索与广度优先搜索,KMP算法,三阶B-树(2-3树)。。内附各算法详细说明与运行报告,各程序以C/C++实现,用VC打开可直接运行-algorithm:BinarySearchTree、Bitree、BubbleSort、graphSearch、HeapSort、kmp、matrixchain、quickSort、RadixSort
  3. 所属分类:Data structs

    • 发布日期:2017-04-04
    • 文件大小:239261
    • 提供者:章小龙
  1. 017

    0下载:
  2. tc实现的广度优先搜索算法和深度优先搜索算法,对学算法很有帮组-tc realize the breadth-first search algorithm and the depth-first search algorithm, algorithm is useful for school groups to help
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-08
    • 文件大小:1692
    • 提供者:xiaochang
  1. cpp1

    0下载:
  2. 深度优先搜索-Depth-first search! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! !
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-11
    • 文件大小:736
    • 提供者:zln
  1. c.resourse

    0下载:
  2. 包含五个C源码,分别是:IP地址解析、二叉树算法集、广度优先搜索及深度优先搜索、华氏温度和摄氏温度的相互转换、用for循环模拟自由落体运动。-Contains five C source code, namely: IP address resolution, binary tree algorithm set, breadth-first search and depth-first search, Fahrenheit and Celsius temperature of one anoth
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-01
    • 文件大小:5534
    • 提供者:毕卫松
  1. DFs

    0下载:
  2. 深度优先搜索求格雷码,可以实现多组数据的输入-Gray code depth first search request
  3. 所属分类:Data structs

    • 发布日期:2017-04-16
    • 文件大小:28357
    • 提供者:whuihuai
  1. java_g

    1下载:
  2. java 写的 深度优先搜索算法和广度优先搜索算法-java
  3. 所属分类:JavaScript

    • 发布日期:2015-07-31
    • 文件大小:1425
    • 提供者:数据库
  1. DirectedGraph

    0下载:
  2. 图论,可以实现深度优先搜索、广度优先搜索等功能,供大家参考-DirectedGraph DirectedGraph DirectedGraph DirectedGraph DirectedGraph
  3. 所属分类:Data structs

    • 发布日期:2017-04-09
    • 文件大小:751382
    • 提供者:qc
  1. search_method

    0下载:
  2. c++ 功能强大的搜索算法 深度优先搜索 树形结构搜索-c++ search_method
  3. 所属分类:Document

    • 发布日期:2017-04-03
    • 文件大小:91967
    • 提供者:wanzi
  1. road

    0下载:
  2. 采用双向广度优先搜索的方法搜索出在一定意义下最佳的解题步骤,并指导我系学生姚刚用DELPHI V5.0开发了一个相应的电脑游戏。本文首先介绍了该算法的基本思想,然后通过完整的PASCAL源程序及其注释给出该算法的具体的实现,最后给出搜索的结果。-Bidirectional breadth-first search method to search out the best in some sense the problem solving steps, and to guide my stude
  3. 所属分类:Other Games

    • 发布日期:2017-04-08
    • 文件大小:24544
    • 提供者:
  1. ACM-reoprt

    0下载:
  2. ACM解题报告 第一题…… …… …… HDOJ 1011 (动态规划+路径拓扑) 第二题………………………… POJ 1007 (排序算法) 第三题………………………… HDOJ 1018 (大数运算) 第四题………………………… POJ 1011 (深度优先搜索) 第五题………………………… POJ 1032 (数学题) -Report of the First ACM solving problems ... ... ... ... ... ... ... .
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-03-24
    • 文件大小:70478
    • 提供者:upwinder
  1. sr

    0下载:
  2. 商人过河问题是数学建模中的一个经典问题,程序利用链表存储渡河状态,使用穷举的算法实现。该算法会找出N个商人/随从渡河的一个可行方案,但并不保证是最佳方案。写完这个程序后让我想到的居然是图的深度优先搜索,二者在查找的思想上是类似的。3gpp的文件-Merchants across the river in the mathematical modeling problem is a classic problem, the program list storage to cross the riv
  3. 所属分类:Multimedia Develop

    • 发布日期:2017-04-13
    • 文件大小:1711
    • 提供者:nani
  1. tu

    0下载:
  2. 图的遍历 从图中某一顶点出发遍历图中其余顶点,且使每一个顶点仅被访问一次。通常有两条遍历图的路径:深度优先搜索和广度优先搜索。 -Graph traversal
  3. 所属分类:source in ebook

    • 发布日期:2017-04-07
    • 文件大小:229482
    • 提供者:徐燊
  1. nodelayer

    2下载:
  2. 在简单的支路始末端节点数据输入的基础上确定配电网拓扑结构表,经过遍历深度优先搜索形成层次结构和节点队列以决定潮流计算的节点顺序。-Whole story in a simple slip end nodes determined on the basis of data input distribution network topology table, after traversing depth-first search form hierarchy and node queue to de
  3. 所属分类:Other systems

    • 发布日期:2017-04-03
    • 文件大小:1134
    • 提供者:海燕
  1. MapCreation

    1下载:
  2. 图的创建,深度优先和广度优先搜索,有实验报告-Map creation, depth-first and breadth-first search, there are experimental reports
  3. 所属分类:Data structs

    • 发布日期:2017-04-06
    • 文件大小:30171
    • 提供者:xiafan
  1. 1

    0下载:
  2. 深度优先搜索 汇编语言 汇编数据结构 算法-Depth-first search algorithm for assembly language compilation of data structures
  3. 所属分类:assembly language

    • 发布日期:2017-03-31
    • 文件大小:853
    • 提供者:张岩
  1. sr

    0下载:
  2. 商人过河问题是数学建模中的一个经典问题,程序利用链表存储渡河状态,使用穷举的算法实现。该算法会找出N个商人/随从渡河的一个可行方案,但并不保证是最佳方案。写完这个程序后让我想到的居然是图的深度优先搜索,二者在查找的思想上是类似的。-Mathematical modeling business across the river in question is a classic problem, the program memory to cross the river using the stat
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-08
    • 文件大小:1707
    • 提供者:周华漫
  1. 8_num

    0下载:
  2. 人工智能中通过深度优先搜索用C/C++实现八数码问题-Depth-first search to achieve 8 digital issues
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-04-13
    • 文件大小:2152
    • 提供者:丁丁
  1. tudeshenduyouxiansousuo

    0下载:
  2. 用图的遍历,邻接矩阵实现图的深度优先搜索,-Graph with adjacency matrix to achieve the depth-first search,
  3. 所属分类:Data structs

    • 发布日期:2017-04-04
    • 文件大小:247416
    • 提供者:刘月
« 1 2 ... 6 7 8 9 10 1112 13 14 15 16 ... 31 »
搜珍网 www.dssz.com