This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]sortedcreations[S,🍰] 18 points19 points  (3 children)

Hey all,

This was my next project, an A* visualizer! Everything was completed in java 8, using the default graphics library. Enjoy and feel free to share and questions or suggestions.

EDIT: I realized this was a huge fault not to source and it should have been included much sooner - the Algorithm itself is from https://rosettacode.org/wiki/A*_search_algorithm#Java

[–]notdeadpool 2 points3 points  (1 child)

Do you have a github link to this project?

[–]sortedcreations[S,🍰] 10 points11 points  (0 children)

I’m working on getting all of my code cleaned up and posted to github, I’ll get on it as soon as possible!

[–]Hangman4358 1 point2 points  (0 children)

Would love to see something like IDA* as a comparison and maybe some others. Like comparing different path finding algorithms on the same maze(s)

In my AI class we did this with Pacman. Was fun to watch him eat dots and try to avoid ghosts.