Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想从我的 Java 应用程序中可视化一个图表,为此我使用 JUNG。问题是我的图表包含大量节点和边,JUNG 提供的哪些布局可以给我最小的交叉边缘?以便图表看起来更好?
JUNG 布局本身并不试图最小化边缘交叉,因为这充其量是一个 O(E^2) 命题。
我建议您尝试不同的布局,看看哪些适合您。没有一个适合所有人的正确答案。