Javascript directed acyclic graph library? (Graph visualization is NOT necessary)

前端 未结 1 646
伪装坚强ぢ
伪装坚强ぢ 2020-12-31 15:00

I have a dataset which is best represented by a graph. It consists of nodes of 6 or 7 different \"types\" with directed edges (dependencies on one another, guaranteed not t

相关标签:
1条回答
  • 2020-12-31 15:00

    I haven't used it, but you might want to check out data.js. It's an MIT-licensed library with a range of data-structure utilities. In particular, it includes Data.Node and Data.Graph:

    A Data.Graph can be used for representing arbitrary complex object graphs. Relations between objects are expressed through links that point to referred objects. Data.Graphs can be traversed in various ways.

    0 讨论(0)
提交回复
热议问题