English 中文(简体)
如何在java执行一组图表
原标题:How to implement a cluster graph in java

我愿引用以下几组图表:this。 是否有这方面的图书馆? 我应如何建立数据结构,以包含投入数据? 同关键词典一样,作为 no子本身,作为连接点的阵列的价值。 描述这一点可以更确切地说什么?

最佳回答

Try a Library such JUNG

<>JUNG是一个框架,用于展示和与任何形式的graphsnetwork在 Java进行工作。 它支持过渡、崩溃、复杂布局......。


About the data structure: It is complicated, and depends on the type of cluster (bidirectional or unidirectional).
In the last case, you shouldn t use a Dictionary, or connections would be stored twice.
Look at JUNG, for example. I think its data is Serializable.

问题回答

查阅JGraphT:提供数据结构,然后用JGraph提供数据。





相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...

热门标签