-
Notifications
You must be signed in to change notification settings - Fork 270
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
A* Algorithm #486
Comments
Please add GSSOC'22 label and assign me the Issue. |
Idea is good. Could you please provide more details on how will you implement it? We don't assign issues. Please read, https://github.com/codezonediitj/pydatastructs/wiki/Issue-Policy |
I would like to work on this issue @czgdp1807
|
I would like to work on A* algorithm on graph, I have implemented it recently in python for my AIML curriculum. |
@czgdp1807 Hello, I would like to work on this issue for GSoC 2023. Can I work on this? |
Sure. Please go ahead @silentspectator20 |
I believe implementing A* algorithm between two nodes will require some kind of heuristic function which can be used to evaluate an approximate cost to the goal node from the current node. The heuristic function should also be admissible, otherwise optimal path is not guaranteed. Should the function A* take the heuristic function as a parameter and assume it to work on the nodes? |
A* Algorithm in Python to find the shortest path between 2 nodes.
The text was updated successfully, but these errors were encountered: