-3

I want to create a directed weighted graph and then run dijkstra algorithm and A* algorithm. I can use if I want graph libraries, And I can write it with c++ or java. What is the best way to do it? can you recommend a good graph libary?

Jimmy
  • 1
  • 1
  • 1
    [Boost Graph Library](https://www.boost.org/doc/libs/1_71_0/libs/graph/doc/index.html) is a good place to start, for C++. – Eljay Dec 08 '19 at 14:17

1 Answers1

1

Go ahead and use libraries. People get PhDs creating them and work in labs and research centres to improve them. It's their job.

Here is the link related to java: Good Java graph algorithm library? Here is c++: List of C++ libraries for Graph Theory

Serhii Povísenko
  • 3,352
  • 1
  • 30
  • 48