Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 21.3k
Expand file tree
/
Copy pathBreadthFirstSearch.java
More file actions
Latest commit
71 lines (59 loc) · 2 KB
/
Copy pathBreadthFirstSearch.java
File metadata and controls
71 lines (59 loc) · 2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
packagecom.thealgorithms.searches;
importcom.thealgorithms.datastructures.Node;
importjava.util.ArrayDeque;
importjava.util.ArrayList;
importjava.util.HashSet;
importjava.util.List;
importjava.util.Optional;
importjava.util.Queue;
importjava.util.Set;
/**
* Breadth-First Search implementation for tree/graph traversal.
* @author caos321
* @co-author @manishraj27
* @see <a href="https://en.wikipedia.org/wiki/Breadth-first_search">Breadth-first search</a>
*/
publicclassBreadthFirstSearch<T> {
privatefinalList<T> visited = newArrayList<>();
privatefinalSet<T> visitedSet = newHashSet<>();
/**
* Performs a breadth-first search to find a node with the given value.
*
* @param root The root node to start the search from
* @param value The value to search for
* @return Optional containing the found node, or empty if not found
*/
publicOptional<Node<T>> search(finalNode<T> root, finalTvalue) {
if (root == null) {
returnOptional.empty();
}
visited.add(root.getValue());
visitedSet.add(root.getValue());
if (root.getValue() == value) {
returnOptional.of(root);
}
Queue<Node<T>> queue = newArrayDeque<>(root.getChildren());
while (!queue.isEmpty()) {
finalNode<T> current = queue.poll();
TcurrentValue = current.getValue();
if (visitedSet.contains(currentValue)) {
continue;
}
visited.add(currentValue);
visitedSet.add(currentValue);
if (currentValue == value || (value != null && value.equals(currentValue))) {
returnOptional.of(current);
}
queue.addAll(current.getChildren());
}
returnOptional.empty();
}
/**
* Returns the list of nodes in the order they were visited.
*
* @return List containing the visited nodes
*/
publicList<T> getVisited() {
returnvisited;
}
}