CodeBus
www.codebus.net
Search
Sign in
Sign up
Hot Search :
Source
embeded
web
remote control
p2p
game
More...
Location :
Home
Search - Breadth First Search
Main Category
SourceCode
Documents
Books
WEB Code
Develop Tools
Other resource
Search - Breadth First Search - List
[
JSP/Java
]
DFS_BFS
DL : 0
java的DFS(Depth-first search )和BFS(Breadth-first search)的实现-the DFS (Depth-first search) and BFS (Breadth-first search) Implementation
Update
: 2025-02-17
Size
: 6kb
Publisher
:
Rachel
[
AI-NN-PR
]
AI_maze
DL : 0
载入txt文件迷宫,含几种搜索方法,例如depth first search, breadth first search等-maze included txt file containing several search methods, such as depth first search, breadth first search, etc.
Update
: 2025-02-17
Size
: 14kb
Publisher
:
黄丽雯
[
AI-NN-PR
]
graphSearch
DL : 0
实现了图的搜索算法,包括深度优先搜索,广度优先搜索,Dijstra算法,A*算法等较典型的搜索算法,同时可以进行图的输入和编辑等操作,仅供大家参考。-achieve the plan's search algorithm, including depth-first search, breadth- first search algorithm Dijstra, A* algorithm is more typical search algorithm, and can map the input and editing operation, only for reference.
Update
: 2025-02-17
Size
: 94kb
Publisher
:
王墨村
[
AI-NN-PR
]
BFS_DFS_Astar
DL : 0
Implemented BFS, DFS and A* To compile this project, use the following command: g++ -o search main.cpp Then you can run it: ./search The input is loaded from a input file in.txt Here is the format of the input file: The first line of the input file shoud contain two chars indicate the source and destination city for breadth first and depth first algorithm. The second line of input file shoud be an integer m indicate the number of connections for the map. Following m lines describe the map, each line represents to one connection in this form: dist city1 city2, which means there is a connection between city1 and city2 with the distance dist. The following input are for A* The following line contains two chars indicate the source and destination city for A* algorithm. Then there is an integer h indicate the number of heuristic. The following h lines is in the form: city dist which means the straight-line distance from the city to B is dist. -Implemented BFS, DFS and A* To compile this project, use the following command: g++-O search main.cppThen you can run it:./SearchThe input is loaded from a input file in.txtHere is the format of the input file: The first line of the input file shoud contain two chars indicate the source and destination city for breadth first and depth first algorithm. The second line of input file shoud be an integer m indicate the number of connections for the map. Following m lines describe the map, each line represents to one connection in this form: dist city1 city2, which means there is a connection between city1 and city2 with the distance dist. The following input are for A* The following line contains two chars indicate the source and destination city for A* algorithm.Then there is an integer h indicate the number of heuristic.The following h lines is in the form: city dist which means the straight-line distance from the city to B is dist.
Update
: 2025-02-17
Size
: 3kb
Publisher
:
bo
[
JSP/Java
]
grapher
DL : 0
用图形用户界面表示的图,数据结构基本应用,最小生成树算法,最短路径,广度、深度优先搜索-graphical user interface with the plan said, the basic data structure application, the minimum spanning tree algorithm, the shortest path, breadth, depth-first search
Update
: 2025-02-17
Size
: 60kb
Publisher
:
张旭
[
MPI
]
BFS_CUDA
DL : 0
用CUDA实现BFS算法源码。CUDA是NV公司基于GPU的统一计算架构,BFS复杂度由CPU上的O(V+E)降为O(diameter),直径diameter即图中root到leaf的最长距离。-This is the algorithm of BFS(breadth first search) on CUDA, and its time complexity is down to O(diameter) which diameter means the longest distance between the root and the leaves.
Update
: 2025-02-17
Size
: 1kb
Publisher
:
iJuliet
[
Data structs
]
BFS
DL : 0
广度优先搜索算法分析;供程序设计人员使用-Breadth-first search algorithm analysis for programmers to use
Update
: 2025-02-17
Size
: 1.94mb
Publisher
:
牛芳
[
Mathimatics-Numerical algorithms
]
8PuzzleProblem
DL : 0
实现了简单的宽度优先搜索,算法比较简单,课程设计时可用。-To achieve a simple breadth-first search
Update
: 2025-02-17
Size
: 685kb
Publisher
:
白天
[
Data structs
]
search_graph
DL : 0
一个python程序,实现了无向图的结构模拟,以及广度优先搜索的算法,以及显示最短路径之一。用leo+ulipad实现。-A python program to realize the structure of an undirected graph simulation, as well as the breadth-first search algorithm, and display one of the shortest path. By leo+ ulipad achieved.
Update
: 2025-02-17
Size
: 2kb
Publisher
:
周鹏
[
Console
]
bashuma
DL : 0
八数码问题的求解系统 利用广度优先搜索方法-8 Puzzle Problem Solving System using breadth-first search method
Update
: 2025-02-17
Size
: 2kb
Publisher
:
ym
[
2D Graphic
]
brainee-30177
DL : 0
An application that implement Uninformed search algorithms * Breadth-first search * Uniform-cost search * Depth-first search * Depth-limited search (tree and recursive versions) * Iterative deepening search-An application that implement Uninformed search algorithms * Breadth-first search * Uniform-cost search * Depth-first search * Depth-limited search (tree and recursive versions) * Iterative deepening search
Update
: 2025-02-17
Size
: 97kb
Publisher
:
amir
[
JSP/Java
]
search-file
DL : 0
2. 设计一个程序,实现文件查找。文件查找操作是一项非常基本的操作,一般的文件查找操作采用递归算法,实际上是采用“深度优先”的策略。请设计一个基于“广度优先”算法的文件查找程序。 提示:由于要找的文件往往距离待查文件夹最近的文件加中。因此,基于“广度优先”算法的文件查找的效率会优于“深度优先”算法。可以将待搜索的文件夹放入一个队列,然后列出该文件夹下所有成员:如果是文件,则与查找条件进行匹配;如果是文件夹,则将其放入队列。在次从队列头取文件夹,执行同样逻辑,直到队列为空。 - Design a program, implementation file search. File search operation is a very basic operating, general file search operation recursively algorithm, is actually use "depth-first" strategy. Please design a based on "breadth first search program files" algorithm.
Update
: 2025-02-17
Size
: 1kb
Publisher
:
guang
[
Data structs
]
Breadth-first-search-algorithm
DL : 0
学习数据结构的帮手广度优先搜索算法源代码-Breadth-first search algorithm
Update
: 2025-02-17
Size
: 32kb
Publisher
:
曲梦龙
[
matlab
]
Breadth-first-search-algorithm
DL : 0
广度优先搜索算法判断图的连通性Breadth first search algorithm of judgment figure connectivity -Breadth first search algorithm of judgment figure connectivity
Update
: 2025-02-17
Size
: 4kb
Publisher
:
赵君威
[
Other
]
breadth-first-search
DL : 0
数据结构经典算法(一):用邻接表实现广度优先搜索。-Adjacency table to achieve the breadth-first search
Update
: 2025-02-17
Size
: 139kb
Publisher
:
carmen
[
AI-NN-PR
]
Breadth-first-search
DL : 0
宽度优先搜索 适合于人工智能课程实验所用-Breadth-first search
Update
: 2025-02-17
Size
: 2kb
Publisher
:
shan
[
Other
]
Breadth-First-Search
DL : 0
Breadth-First Search SourceCode : C++ windows7, Visual Studio 2008
Update
: 2025-02-17
Size
: 252kb
Publisher
:
aniz4
[
File Operate
]
Breadth-First-Search
DL : 0
c语言,算法,对指定文件夹进行广度优先搜索,输出文件名-C language, algorithm, for the specified folder is breadth first search, the output file name
Update
: 2025-02-17
Size
: 71kb
Publisher
:
嘎嘎
[
Other
]
BFS-breadth-first-search
DL : 0
breadth-first search
Update
: 2025-02-17
Size
: 81kb
Publisher
:
Henri
[
AI-NN-PR
]
eight-digital-Breadth-first
DL : 0
宽度优先搜索解决八数码问题,包含源文件及详细注释-Breadth-first search to solve eight digital
Update
: 2025-02-17
Size
: 1.22mb
Publisher
:
Albert
«
1
2
3
4
5
6
7
8
9
10
...
18
»
CodeBus
is one of the largest source code repositories on the Internet!
Contact us :
1999-2046
CodeBus
All Rights Reserved.