We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2da1d4f commit dcf16acCopy full SHA for dcf16ac
src/main/java/com/thealgorithms/graph/AStarSearch.java
@@ -15,7 +15,7 @@
15
* @author Your Name
16
* @version 1.0
17
*/
18
-public final class AStar {
+public final class AStarSearch {
19
20
/**
21
* Represents a node in the graph for A* algorithm.
@@ -54,7 +54,7 @@ public int compareTo(Node other) {
54
55
* Constructs an empty graph.
56
57
- public AStar() {
+ public AStarSearch() {
58
graph = new HashMap<>();
59
}
60
0 commit comments