搜索资源列表
-
0下载:
c语言广度优先搜索算法的实现,输入几个节点,生成树,然后经广度优先搜索算法输出,c language breadth-first search algorithm, enter the number of nodes, spanning tree, and then by the breadth-first search algorithm output
-
-
0下载:
本文件描述了广度优先搜索的算法实现。初学者可以参考。-Discribing the algorithm of breadth-first search.
-
-
0下载:
八数码问题,用广度优先和深度优先算法实现。并且用mfc实现界面,让结果算法运行过程以动画显示。并附上实验报告-Depth-first search algorithm and the breadth-first search algorithm
-
-
0下载:
tc实现的广度优先搜索算法和深度优先搜索算法,对学算法很有帮组-tc realize the breadth-first search algorithm and the depth-first search algorithm, algorithm is useful for school groups to help
-
-
0下载:
包含五个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
-
-
0下载:
对任意给定的图(顶点数和边数自定),建立它的邻接矩阵并输出,然后利用队列的五种基本运算(置空队列、进队、出队、取队头元素、判队空)实现图的广度优先搜索算法-For any given graph (vertices and the number of edges from the set), to establish its adjacency matrix and the output, then use the queue of five basic operations (blank qu
-
-
0下载:
本程序采用广度优先搜索算法求解农夫过河问题-This program uses a breadth-first search algorithm for the farmer across the river
-
-
0下载:
匹配问题 - 匈牙利树算法 - 广度优先搜索BFS-Match- Hungary tree algorithm- breadth-first search BFS
-
-
0下载:
实现走迷宫游戏,用广度优先搜索算法寻找最短路径-Achieve Maze game, using breadth-first search algorithm to find the shortest path
-
-
0下载:
用C++实现简单的广度优先寻路算法-Using C++ to achieve a simple breadth-first search algorithm
-
-
0下载:
深度优先搜寻与宽度优先搜寻算法的实现,在二叉树中最有效的遍历算法-Depth-first search and breadth-first search algorithm, in the most efficient binary tree traversal algorithm
-
-
0下载:
改程序实现QRD-M算法的仿真,该算法是一种宽度优先的搜索方式,有不同的调用函数。-Procedures to achieve the simulation of QRD-M algorithm, the algorithm is a breadth first search method, a function call different.
-
-
0下载:
Breadth First Search Algorithm
-
-
0下载:
c++实现的非常详细的数据结构与算法代码,队列,链表,三元组,哈弗曼树,树的各种递归,非递归遍历算法,树与森林相互转化算法,图的深度,广度优先搜索算法,双连通算法,强连通算法,拓扑排序算法,最短路径算法,哈希,快速排序,归并排序等等。-C++ very detailed data structure and algorithm code, queues, linked lists, three tuple Havermann tree, various recursive tree, non r
-
-
0下载:
A*算法的实例。通过迷宫路径的搜索展示A*算法广度优先搜索的过程-Examples of A* algorithm. By searching the maze path display A* algorithm breadth-first search process
-
-
0下载:
本题编写程序模拟人进行连连看游戏,电脑模拟人玩连连看的过程如下:
1、分析本局游戏,将本局游戏转化成一个二位数组。0表示空白区域,数字表示该游戏牌为出现在游戏中的第几类游戏牌。
2、利用广度优先搜索算法,判断两个游戏牌是否可以消除。
3、程序模拟人点击可以消除的一对游戏牌进行消除。
对某局游戏转化成二维数组如下:
0 0 0 0 0
0 1 2 0 0
0 0 3 4 0
0 0 0 1 0
输入二位数组的行、列,二位数组、起始元素的的坐标、终止元素的坐标,判断起始游戏牌
-
-
0下载:
这是一份广度优先搜索的代码,代码很简单,很容易就能理解广搜的核心。(This is a breadth first search algorithm, the code is very short, it is easy to understand the core of Guang search.)
-