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

搜索资源列表

  1. graph

    0下载:
  2. 用图里面dfs方法编写的素数环程序。在vc++6.0中编译通过,是一个DOS的窗口-Figure prepared using methods which dfs prime ring procedures. In vc++6.0 in the compiler, is a DOS window
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-07
    • 文件大小:564090
    • 提供者:蓝夏军
  1. dfsPbfs

    0下载:
  2. 数据结构,图的深搜和广搜。(DFS+BFS)-Data structures, graph search deep wide search. Data structures, graph search deep wide search. Data structures, graph search deep wide search.
  3. 所属分类:Data structs

    • 发布日期:2017-04-11
    • 文件大小:1402
    • 提供者:lbb
  1. minesweep

    0下载:
  2. 扫雷游戏是以BorderLayout为布局,分别在CENTER与EAST中加入JPanel用于构建游戏界面和基本的信息与控制。 右方的JTextField中提供设定雷数的功能。游戏可通过左键与右键的操作进行。 主类包括: 1:主类的构造方法(Main),设定布局与各种监听器的注册; 2:初始化方法(init),每当调用时重新随机埋雷,代表新一轮游戏的开始; 3:搜索方法(dfs):是用深度优先的搜索方法,通过对网格的hash[][]达到扫雷中需要的游戏效果。 打包生
  3. 所属分类:Other Riddle games

    • 发布日期:2017-03-31
    • 文件大小:55760
    • 提供者:zhuwc
  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
    • 文件大小:4435
    • 提供者:李国强
  1. work

    0下载:
  2. DFS以及海明窗汉宁窗的各种实例代码。对学习matlab很有帮助-DFS work hanming hainig matlab
  3. 所属分类:matlab

    • 发布日期:2017-04-03
    • 文件大小:2095
    • 提供者:dis
  1. iwebSNS

    0下载:
  2. 作为一款大型高并发高负载的开源SNS(社交网络服务)软件,iwebSNS功能强大,易于扩展,具有良好的伸缩性和稳定性。 它基于iweb SuperInteraction(简称iweb SI)框架开发。借助iwebSI平台,站点可以轻松获得支持热插拔及快速增加新节点的集群计算与处理能力(分布式计算与存储/高可用性/负载均衡),以方便管理web2.0类站点持续增长的数据量。SI的web层、db层负载均衡,基于内存的分布式缓存系统、dfs(分布式文件系统)、分布式数据存储等可以轻松支持站点拥有服务
  3. 所属分类:WEB(ASP,PHP,...)

    • 发布日期:2017-05-14
    • 文件大小:3390664
    • 提供者:李启明
  1. SHITIKU

    0下载:
  2. 数字信号处理试题库 DTFT,DFS,DFT,FFT,滤波器设计-Digital signal processing examination DTFT,DFS,DFT,FFT FILTER
  3. 所属分类:DSP program

    • 发布日期:2017-04-10
    • 文件大小:1938392
    • 提供者:longjing
  1. source_code

    0下载:
  2. 1.排序算法:快排,插入排序,选择排序,冒泡排序,堆排,归并排序 2.无向图:建立邻接表,并深度遍历 3.二叉树:建树,插入叶子节点并删除,计算深度及高度,前序中序后序遍历,以及用栈实现的非递归遍历 4.二叉排序树:建树并插入、删除结点 5.通讯录:有主界面,能添加,删除查找相应的数据-1.sort:quicksort select sort,insert sort,heap sort.etc. 2.graph:create with the adjacent list,an
  3. 所属分类:Data structs

    • 发布日期:2017-03-30
    • 文件大小:15453
    • 提供者:zyw
  1. Three

    0下载:
  2. recall.c:回溯法求有向图是否存在回路,将结果输出到文件中。dfs.c:深度优先搜索解决N皇后问题,结果输出到文件。Client.java:一个java编写的即时通讯小程序。-recall. depth-first search. Instant message.
  3. 所属分类:Data structs

    • 发布日期:2017-04-04
    • 文件大小:5158
    • 提供者:谭继林
  1. MPI

    0下载:
  2. Algorithm for the leader election DFS technique
  3. 所属分类:MPI

    • 发布日期:2017-04-08
    • 文件大小:6399
    • 提供者:clau
  1. DFS

    0下载:
  2. ′phyton algorithm that selects and helps other to develop their skills while programing
  3. 所属分类:Other systems

    • 发布日期:2017-04-11
    • 文件大小:1241
    • 提供者:jose
  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
    • 文件大小:227993
    • 提供者:王俊超
  1. 5.21DFS

    0下载:
  2. 深度优先搜索实现的二叉树深度判断,源码在vc6.0下编译通过。-DFS searching to measure the depth of the binary tree.and the code is compilled successfully in VC6.0.
  3. 所属分类:Data structs

    • 发布日期:2017-04-17
    • 文件大小:213360
    • 提供者:刘华山
  1. deep-first-searching

    0下载:
  2. 深度优先搜索实现的二叉树深度测量,源码在vc6.0下编译通过,运行稳定。-DFS searching to measure the depth of the binary tree.and the code is compilled successfully in VC6.0.
  3. 所属分类:Data structs

    • 发布日期:2017-03-28
    • 文件大小:99733
    • 提供者:刘华山
  1. Graph-traversal

    1下载:
  2. 图的遍历示例。包括深度优先和广度优先。控制台程序。-Graph traversal.DFS and BFS.
  3. 所属分类:Data structs

    • 发布日期:2017-04-02
    • 文件大小:6510
    • 提供者:Chen
  1. dfs

    0下载:
  2. 产生方波,分别产生50,30,20,10Hz四种频率信号通过蜂鸣器的响声和继电器的通断速度来判断。四个按键分别对应一种频率,可互相切换方波发生器 分别产生 50,30,20,10Hz-Produce a square wave, respectively, to produce 50,30,20,10 Hz, four-frequency signals are to judge by the sound of the buzzer and the relay off speed. The fo
  3. 所属分类:SCM

    • 发布日期:2017-04-07
    • 文件大小:521
    • 提供者:李鹏辉
  1. graphclaim

    0下载:
  2. 本源码实现了图的基本操作。BFS,DFS,邻接矩阵,邻接链表,矩阵变换,拓扑排序等。-This code is about Basic opereation of Graph.Such as BFS,DFS,adjacent-matrix/list matrixing and topical sort etc.
  3. 所属分类:Data structs

    • 发布日期:2017-04-04
    • 文件大小:1725
    • 提供者:人类
  1. prolog-BFS

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

    • 发布日期:2016-04-27
    • 文件大小:15360
    • 提供者:霍锋
  1. DFS.cpp

    0下载:
  2. This code do depth first search algorithm. Adjacency matrix symbolize every edge in the graph, for example adj[i][j]=1 is an edge from i to j, i and j are vertices.
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-04-01
    • 文件大小:737
    • 提供者:Dennis
  1. DFS-with-edges.cpp

    0下载:
  2. This code do Depth First Search and marks every edge as Back Edge, Forward Edge, Tree edge and Cross edge.
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-04-10
    • 文件大小:1072
    • 提供者:Dennis
« 1 2 ... 8 9 10 11 12 1314 15 16 17 18 ... 23 »
搜珍网 www.dssz.com