Pradeepsingh61/DSA_Code

[REQUEST] Add A* Search Algorithm in Java language

開放

#230 建立於 2025年10月1日

 (1 則留言) (1 個反應) (2 位負責人)C++ (266 個分叉)auto 404
algorithmsenhancementgood first issuehacktoberfestnew-language

倉庫指標

星標
 (52 顆星)
PR 合併指標
 (PR 指標待抓取)

描述

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

貢獻者指南