문제

I want to visualize a graph from my Java application, to do so I use JUNG.The thing is that my graphs include a bulk of nodes and edges,which of the Layouts provided by JUNG can give me minimum cross edging? so that the graph looks better?

도움이 되었습니까?

해결책

The JUNG layouts don't try to minimize edge crossings per se, as that's an O(E^2) proposition at best.

I recommend you try out the different layouts and see which works for you. There's no single right answer that works for everyone.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top