kyrylomyr
kyrylomyr

Reputation: 12642

C# graphs algorithms library

I'm looking for .NET library with the next graphs algorithms:

I can write my own realization, but don't have too much time. Tell me, please, names of any existing libraries that can do this. Thanks.

Upvotes: 1

Views: 3172

Answers (2)

kyrylomyr
kyrylomyr

Reputation: 12642

The best solution was to use QuickGraph library. It already has algorithm for finding a minimum spanning tree. And I used their implementation of graph to write my own algorithm for partitioning it.

Upvotes: 1

em70
em70

Reputation: 6081

yWorks provides several products for .NET Depending on where you plan on deploying you can choose your flavor and perform lots of analyses on the graph. Although I'm not fond of the API (a bit too java-ish), the biggest disadvantage is definitely the price.

Upvotes: 1

Related Questions