Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have graph. I need visualise it with nodes arranged in a circle. How can i khow it's possible circle visualisation without intersections of edges or not?

share|improve this question
1  
Smells like an NP-hard/NP-complete problem, but I could be wrong. You could try asking on cstheory.stackexchange.com – Markus Jarderot Mar 4 '11 at 16:45

1 Answer

You can use planarity testing to check if a graph can be laid out on a plane without intersections.

share|improve this answer
not each plane graph can be laid out on circle – gevgeny Mar 6 '11 at 18:07
If you allow curved edges in your drawing, all planar graphs can be laid out in a circular shape with no edge crossings. However, it may not be the best idea for visualization. Also, for any definition of a circular layout, planarity is a necessary condition. – tkerwin Mar 6 '11 at 20:02

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.