Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 741 Bytes

File metadata and controls

24 lines (18 loc) · 741 Bytes

A-Star-Pathfinding-CSharp

This is an implementation of the A* pathfinding algorithm for graph, written in C# and designed using a Windows Form App.

The program allows the user to:

  • Add vertices,
  • Add edges,
  • Search path.

Features included:

  • Clearing all data,
  • Generating test data,
  • Selecting starting and ending point of path,
  • Displaying all vertices and edges in the graph,
  • Marking found path in panel.

Algorithm written based on: