| Interface | Description |
|---|---|
| Edge |
Represents an edge that connects nodes.
|
| Node |
Models a node on a graph.
|
| Class | Description |
|---|---|
| AStarSearch |
Implementation of an A* search algorithm
https://www.geeksforgeeks.org/a-search-algorithm/
|
| BreadthFirstSearch |
Implementation of breadth first search
For details refer to https://www.geeksforgeeks.org/breadth-first-search-or-bfs-for-a-graph/
|
| DepthFirstSearch |
Implementation of depth first search
For detail refer to https://www.geeksforgeeks.org/depth-first-search-or-dfs-for-a-graph/
|