Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

17
votes
2answers
5k views

GraphViz - How to connect subgraphs?

In the DOT language for GraphViz, I'm trying to represent a dependency diagram. I need to be able to have nodes inside a container and to be able to make nodes and/or containers dependent on other ...
5
votes
2answers
173 views

Pattern matching in graphs

I'm trying to find tool/algorithm for searching sections that corresponds to specified pattern in oriented graph, e.g.: A->B->C or or A<->B->C Please, suggest me direction of my searches. I mean ...
5
votes
3answers
326 views

minimum connected subgraph containing a given set of nodes

I have an unweighted, connected graph. I want to find a connected subgraph that definitely includes a certain set of nodes, and as few extras as possible. How could this be accomplished? Just in ...
5
votes
3answers
381 views

Easy way to determine whether a given graph is subgraph of some other graph?

I'm looking for an algorithm to check whether a given graph is subgraph of another given graph. I have few conditions to make this NP complete problem bit more feasible.. The graphs have approx ...
4
votes
2answers
319 views

How can I get dot to draw connected subgraphs side by side?

This is what the generated graph looks currently: And here is the code for this: digraph { rankdir=TB; subgraph cluster01 { label="1.fázis" aSTART; node [shape = doublecircle]; ...
4
votes
3answers
982 views

Graph Algorithm To Find All Paths Between N Arbitrary Vertices

I have an graph with the following attributes: Undirected Not weighted Each vertex has a minimum of 2 and maximum of 6 edges connected to it. Vertex count will be < 100 Graph is static and no ...
4
votes
6answers
2k views

Finding all disconnected subgraphs in a graph

I have a graph which contains an unknown number of disconnected subgraphs. What's a good algorithm (or Java library) to find them all?
4
votes
2answers
729 views

What's the Difference Between Subgraph Isomorphism and Subgraph Monomorphism?

In one of the projects I've worked on, the subject of isomorphism versus monomorphism came up. A little background: I'm no expert on graph theory and have no formal training in it. But this topic is ...
3
votes
0answers
77 views

Finding the best subgraph

I am trying to solve the following problem: Given a connected graph G = (V, E) and a vertex t ∈ V, I need to find a subgraph G'= (V', E ') where t ∈ V'. G' should maximize some objective function ...
3
votes
1answer
110 views

Time complexity of n-vertex subgraph enumeration

I have an algorithm for creating a list of all possible subgraphs on P vertices through a given vertex. It's not perfect but I think it should be working alright. The problem is I get lost when I try ...
2
votes
1answer
171 views

subgraphs in a graph

I have a main graph and another small graph, suppose that the small graph could be repeated in the main graph as a subgraph with a degree of similarity(not necessarily the same small graph) What's a ...
2
votes
1answer
559 views

Graphviz: how to rotate a node (or a subgraph)?

I am trying to have a node (or a subgraph, enclosing a node - whichever is possible/easier) rotated, like shown in this image: (Note that it doesn't matter to me if the "B" label is rotated - only ...
2
votes
1answer
595 views

Algorithms for subgraph isomorphism detection

Subgraph isomorphism is an NP Complete problem. The most widely used algorithm is the one proposed by Ullman. Can someone please explain the algorithm to me in layman's language? I read the above ...
1
vote
1answer
35 views

Creating a subgraph of a graph induced by node list

I'm currently using Graph, however it lacks a method to create a subgraph of the original graph induced by given list of vertices. I've written a stub which does it using Graph's accessors, but ...
1
vote
2answers
217 views

Induced subgraph; existence of path between two nodes

Sorry for the wall of text, its as concise as I could make it! I've got one very large directed graph, G, and subset of vertices, S, from within G. What I want to do is find the subgraph of G ...
1
vote
1answer
714 views

Find all complete sub-graphs within a graph

Is there a known algorithm or method to find all complete sub-graphs within a graph? I have an undirected, unweighted graph and I need to find all subgraphs within it where each node in the subgraph ...
1
vote
2answers
235 views

How to obtain all the subgraphs from a graph?

How to obtain all the subgraphs of a fixed size from a graph, in pseudocode? (brute force) Without external libraries if possible. Thanks!
0
votes
2answers
36 views

subgraph of an acyclic graph covering some selected nodes but other nodes not on the path

I have a undirected and unweighted (or all edges are weighted 1) acyclic graph (G=VxE). Some of this graph's nodes are selected as sV (sV is subset of V). Problem is, I want to find the subgraph ...
0
votes
2answers
19 views

algo for reducing a graph while preserving edge values along paths from a start node to an end node

I have a directed cyclic graph with values at edges but no values at nodes. The graph has a start node and an end node, and I want to preserve the set of paths through the graph but I don't care ...
0
votes
0answers
20 views

JUNG, subgraph in a vertice

I'm trying to insert nested subgraph into a vertice. At last I want to create my own layout but firstly I've tried to use StaticLayout and set the vertices positions by hand. Unfortunately, parent ...
0
votes
1answer
106 views

Generate all possible subgraphs of a directed graph keeping the number of vertices

I have two lists of vertices: V and S. I would like to generate all possible directed graphs from V and S so, that each vertex from V has only one out-edge and exactly one in-edge, and each vertex ...
0
votes
2answers
102 views

top-down subragpraphs, left-right inside subgraphs

I'd like to have my graph looks like this, but I can only get this. The problem is, rankdir does not work in subgraph (bug 1279 in graphviz). So, how to emulate it? The code: digraph G { node ...
0
votes
0answers
73 views

JGrapht: Generate subgraphs with DirectedSubgraph.java class

I use jgrapht. I will generate subgraphs. I think jgrapht-0.8.2/jgrapht-0.8.2/src/org/jgrapht/graph/DirectedSubgraph.java is useful for this purpose. But I could not find how can I use this class? ...
0
votes
0answers
18 views

connecting forests in subgraph

need to connect the subset using the original graph. Look at this graph {9: [10], 7: [9], 8: [9], 6: [7], 3: [8], 2: [3, 4], 5: [4, 6], 4: [7], 1: [2]} Now if I take the subset [1,5,8] When I ...
0
votes
1answer
122 views

subgraph isomorphism [closed]

I need a generic algorithm to solve the problem of subgraph isomorphism, we have tow graphs T and G, is T a subgraph in T?
0
votes
2answers
180 views

algorithm to check whether a given graph is subgraph of another graph [closed]

i assume that we have 2 labeled graphs G and T and the algorithm determine if G a subgraph of T and the corresponding vertices in the main graphT and the subgraph G should have same label