In graph theory, a planar graph is a graph that can be embedded in the plane without edge crossings.

learn more… | top users | synonyms

0
votes
0answers
14 views

shortest length path in undirected chordal graph in log space

Given an undirected chordal graph, is it possible to find the minimum distance between a source and any other vertices in LogSpace or in LogDCFL? At least with the constraint that between any two ...
-4
votes
0answers
15 views

Planar Graph Microsoft Visual Studio 2010 [closed]

Given a set of n randomly scattered points for even n = 2,4,6,...,50 . Find the maximum number of lines between the pairs of nodes in such a way the lines do not cross each other. I need to do it ...
2
votes
1answer
77 views

Coloring specific type of the planar graph

I've got a specific type of the planar graph and I found it interesting to search for an algorithm which will color its vertices legally. About this type of graph, it's very easy and cool: ...
1
vote
0answers
49 views

Implementations of planar graphs/maps (with embeddings)

For the purpose of this post, by a plane graph, or a planar map, I will mean an abstract graph that can be drawn in the plane (or equivalently on the sphere), together with the circular order of the ...
1
vote
0answers
40 views

Edge addition complexity in planar graph?

I created a program that adds edges between vertices. The goal is to add as many edges as possible without crossing them(ie Planar graph). What is the complexity? Attempt: Since I used depth first ...
0
votes
0answers
35 views

Maximum edges btw points, planar graph?

I have an assignment where I have a set of random points in a rectangle and I should compute the max set of edges with no intersections allowed. I've made some research and apparently this is called ...
0
votes
0answers
135 views

Planar graph from random points

I'm trying to create a graph with as many straight edges as possible between points without allowing any of the edges to intersect in Java. Basically, I'm trying to make a planar graph with a random ...
4
votes
2answers
146 views

Fast algorithm to uncross any crossing edges in a set of polygons

I have a number of polygons each represented as a list of points. I'm looking for a fast algorithm to go through the list of polygons and uncross all of the crossed edges until no crossed edges ...
0
votes
0answers
18 views

How to construct a Planar Polygon

I have the following:- 1)Set of points on a plane(3D points). 2)The normal to the plane. 3)The boundary(convex hull) of the plane. Now,from these how do i construct a PlanarPolygon.Can anybody help ...
1
vote
1answer
108 views

Convex Polygons, Graphics Algorithms

Q.Why are convex polygons considered a better choice for designing graphics algorithms? My A. Convex polygons are planar and easier to clip. My answer is kind of brief and I am not sure if my answer ...
0
votes
0answers
33 views

Discovery and labelling of edges in a planar connected graph

I have the following problem. Consider a planar connected graph (alternatively an unstructured grid). Within the domain described by this graph, is a closed sub-domain whose boundary edges are ...
1
vote
1answer
67 views

Representing knots in code?

So I have recently been reading some papers on the relationships of graph theory and knot theory, and that got me thinking about representing knots in code. My current intuition on this matter is to ...
2
votes
2answers
465 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
1answer
268 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: ...
7
votes
1answer
337 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 ...
1
vote
1answer
293 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 ...
2
votes
2answers
231 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 ...
1
vote
1answer
217 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 ...
3
votes
1answer
661 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 ...
0
votes
2answers
522 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 ...
2
votes
2answers
276 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 ...
2
votes
0answers
86 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. ...
0
votes
1answer
400 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), ...
3
votes
1answer
357 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 ...
8
votes
5answers
2k 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)?
5
votes
2answers
392 views

Finding Hamiltonian cycles in cubic planar graphs

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 for asymptotically ...
7
votes
2answers
2k 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 ...
6
votes
4answers
3k 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 ...
4
votes
5answers
4k 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 ...
4
votes
3answers
1k 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 ...