mirror of
https://github.com/TheAlgorithms/Java.git
synced 2025-12-19 07:00:35 +08:00
72 lines
2.0 KiB
Java
72 lines
2.0 KiB
Java
package com.thealgorithms.searches;
|
|
|
|
import com.thealgorithms.datastructures.Node;
|
|
import java.util.ArrayDeque;
|
|
import java.util.ArrayList;
|
|
import java.util.HashSet;
|
|
import java.util.List;
|
|
import java.util.Optional;
|
|
import java.util.Queue;
|
|
import java.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>
|
|
*/
|
|
public class BreadthFirstSearch<T> {
|
|
private final List<T> visited = new ArrayList<>();
|
|
private final Set<T> visitedSet = new HashSet<>();
|
|
|
|
/**
|
|
* 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
|
|
*/
|
|
public Optional<Node<T>> search(final Node<T> root, final T value) {
|
|
if (root == null) {
|
|
return Optional.empty();
|
|
}
|
|
|
|
visited.add(root.getValue());
|
|
visitedSet.add(root.getValue());
|
|
|
|
if (root.getValue() == value) {
|
|
return Optional.of(root);
|
|
}
|
|
|
|
Queue<Node<T>> queue = new ArrayDeque<>(root.getChildren());
|
|
while (!queue.isEmpty()) {
|
|
final Node<T> current = queue.poll();
|
|
T currentValue = current.getValue();
|
|
|
|
if (visitedSet.contains(currentValue)) {
|
|
continue;
|
|
}
|
|
|
|
visited.add(currentValue);
|
|
visitedSet.add(currentValue);
|
|
|
|
if (currentValue == value || (value != null && value.equals(currentValue))) {
|
|
return Optional.of(current);
|
|
}
|
|
|
|
queue.addAll(current.getChildren());
|
|
}
|
|
|
|
return Optional.empty();
|
|
}
|
|
|
|
/**
|
|
* Returns the list of nodes in the order they were visited.
|
|
*
|
|
* @return List containing the visited nodes
|
|
*/
|
|
public List<T> getVisited() {
|
|
return visited;
|
|
}
|
|
}
|