Is there any graph data structure implemented for C#

前端 未结 2 1320
终归单人心
终归单人心 2021-01-30 12:26

I tried to find a graph data structure to reuse in C# without any success. Of course, I can borrow from data structure books but I want it to be more commercially practical(?) A

2条回答
  •  终归单人心
    2021-01-30 13:03

    There is actually a fairly old article in MSDN that covers graph creation in C#, An Extensive Examination of Data Structures Using C# 2.0. Despite its age, it still addresses your question as long as you don't mind creating your own graph class(es).

提交回复
热议问题