Pradeepsingh61/DSA_Code

[REQUEST] Add A* Search Algorithm in Java language

Open

#230 opened on Oct 1, 2025

 (1 comment) (1 reaction) (2 assignees)C++ (266 forks)auto 404
algorithmsenhancementgood first issuehacktoberfestnew-language

Repository metrics

Stars
 (52 stars)
PR merge metrics
 (PR metrics pending)

Description

Algorithm Name

A* Search Algorithm

Programming Language

Java

Category

Searching

Difficulty Level

Medium (Intermediate)

Algorithm Description

A* (A-star) Search is a classic graph traversal and pathfinding algorithm that finds the shortest path from a start node to a target node. It combines features of Dijkstra’s Algorithm and Greedy Best-First Search by using a cost function (g + h) that balances path cost and heuristic estimate. A* is widely used in AI, games, robotics, and route planning due to its optimality and efficiency. Adding A* would expand the repository’s graph algorithms and offer a key tool for competitive programming, game development, and more.

References (Optional)

Contribution Intent

  • I would like to implement this algorithm myself
  • I'm requesting this for someone else to implement
  • I need help implementing this algorithm

Code of Conduct

  • I agree to follow this project's Code of Conduct

Contributor guide