Tagged Questions

In graph theory, a planar graph is a graph that can be embedded in the plane, i.e., it can be drawn on the plane in such a way that its edges intersect only at their endpoints. In other words, it can be drawn in such a way that no edges cross each other.

learn more… | top users | synonyms

6
votes
1answer
129 views

List of problems that are in general NP-hard but have polynomial-time solution in planar graphs?

I encountered many problems that can be formulated as graph problem. It is in general NP-hard but sometimes the graph can be proved to be planar. Hence, I am interested in learning these problems and ...
6
votes
2answers
967 views

Planar Graph Layouts

What are some edge overlap minimization techniques when laying out a graph? (Preferably related to GraphViz) Also are there any existing software that can layout a graph in a planar fashion? Current ...
5
votes
3answers
528 views

Generate a large random planar graph

What is the most efficient way to generate a large (~ 300k vertices) random planar graph ("random" here means uniformly distributed)?
4
votes
2answers
269 views

Finding Hamiltonian cycles in cubic planar graphs

The title says it all. I have relatively small (40-80 nodes) cubic (3-regular) planar graphs, and I have to decide their Hamiltonicity. I am aware of the fact that this task is NP-complete, but I hope ...
4
votes
3answers
772 views

small cycle finding in a planar graph

I have a geometric undirected planar graph, that is a graph where each node has a location and no 2 edges cross, and I want to find all cycles that have no edges crossing them. Are there any good ...
3
votes
4answers
960 views

Best Planar graph program [closed]

In graph theory, a planar graph is a graph that can be embedded in the plane, i.e., it can be drawn on the plane in such a way that its edges intersect only at their endpoints. What is the best open ...
3
votes
5answers
2k views

How to check if a Graph is a Planar Graph or not?

I'm learning about the Planar Graph and coloring in c++. But i don't know install the algorithm to do this work. Someone please help me? Here i have some information for you! This is my code! And it ...
2
votes
2answers
123 views

Drawing a graph on the plane

I've got a hometask : To make the visualizer of planar graph embedding (or laying I don't know a correct word for this process). Planar graph is isomorphic to plane graph, and a plane graph is a ...
2
votes
1answer
220 views

Minimize Cross Edges in a Graph

I am using networkx (a python graph-drawing package) http://networkx.lanl.gov/index.html for one of my project. Though networkx is pretty cool, the display function kind of sucks due to number of ...
2
votes
2answers
156 views

Straight line planar embedding of a graph structure

Here is my problem: I have a graph structure (with straight line edges) which I know to be planar (i.e. there exists an embedding of the graph where no edges cross). I need an algorithm which will ...
1
vote
2answers
95 views

Fastest Algorithm For Graph Planarization

I'm using Processing to develop a navigation system for complex data and processes. As part of that I have gotten into graph layout pretty deeply. It's all fun and my opinions on layout algorithms are ...
1
vote
2answers
94 views

Java - generate class diagram by myself

I am working on a small project in Java described below: Input: List of objects for directed graph. ( Nodes with different kind of edges: inheritance, inner-class, friend classes, etc. ) Output: ...
1
vote
1answer
137 views

planar graph with fixed maximum length of edges

I want to generate random points in a 2D space, this points will be nodes of a planar graph (built using Gabriel graph algorithm or RNG ). I wrote java code to do this, but I have two hard problem to ...
1
vote
1answer
133 views

Bounding the number of edges between star graphs such that graph is planar

I have a graph G which consists only of star graphs. A star graph consists of one central node having edges to every other node in it. Let H1, H2,…,Hn be different star graphs of different ...
1
vote
0answers
65 views

Complexity of existence of m-cycle in planar graph with n nodes

G is a planar graph with n nodes. What are the complexity of following problems? A: Does G contain a m-cycle? (m-cycle is a simple cycle with m nodes, m B: complexity of counting all m-cycles in G. ...
1
vote
0answers
221 views

Algorithm for the Planarization of a non-planar Graph

Is there a popular algorithm for the planarization of a non-planar graph. I'm currently planning to implement a Orthogonal Planar Layout algorithm for undirected graphs in Boost ( Boost Graph Library ...
0
votes
0answers
81 views

Tool for planar graph embedding

I'm working on a complex algorithm that involves a lot of work on a planar graph. It would be very helpful for me if were able to actually visualize the graph somehow. So far I tried Pigale ...
0
votes
2answers
321 views

Weighted undirected graph partitioning

Given an undirected cyclic planar graph G(V,E) with vertex weights W(V), a fixed plane embedding E(G) and two nodes s and t, I need to find a partitioning of G that divides it into two connected ...
0
votes
1answer
224 views

Planar Embedding (Planar Face Traversal) Algorithm in C#

I have a graph G. The graph is a planar graph. I wish to find all the faces of the graph. I understand that constructing a planar embedding is the way to find the faces ( or regions, or cycles), ...