Pradeepsingh61/DSA_Code

[REQUEST] Add A* Search Algorithm in Java language

オープン

#230 opened on 2025/10/01

 (1 件のコメント) (1 件のリアクション) (2 人の担当者)C++ (266 件のフォーク)auto 404
algorithmsenhancementgood first issuehacktoberfestnew-language

Repository metrics

Stars
 (52 個のスター)
PR merge metrics
 (PR metrics pending)

説明

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

コントリビューターガイド