Use a Graph Library/Node Network Library or Write My Own?

后端 未结 9 1852
逝去的感伤
逝去的感伤 2020-12-23 22:23

I\'m trying to decide between going with a pre-made graph/node network library or to roll my own.

I\'m implementing some graph search algorithms which might require

9条回答
  •  感情败类
    2020-12-23 22:53

    I recently gave the boost graph library a trial for Dijkstras shortest path problem. Results:

    • Very High performance

    • Very little code needed

    • Very flexible and extensible

    • Hard to understand or debug

    Advice: Use it but before you do so read The Boost Graph Library: User Guide and Reference Manual

提交回复
热议问题