A graph is a mathematical structure that contains a collection of vertices or 'nodes' and a collection of edges that connect pairs of vertices. Graphs can be undirected or directed, edges may be directed from one vertex to another.
0
votes
0answers
8 views
Library for Maximum independent set on a sparse bipartite graph (from sparse matrix)
I am working with sparse matrices (not particularly huge, <100Mb) and I want to compute the largest independent set on the bipartite graph $(N,E)$ defined as follows: suppose the matrix is named A ...
1
vote
1answer
47 views
Algorithm for determining number of discreet graphs in a dataset
I have a dataset that contains vertices and the other vertices that they are connected to. This data set represents an undirected graph. What I'm trying to determine is the number of discreet ...
0
votes
1answer
41 views
Topological sort of cyclic graph with minimum number of violated edges
I am looking for a way to perform a topological sorting on a given directed unweighted graph, that contains cycles. The result should not only contain the ordering of vertices, but also the set of ...
0
votes
0answers
30 views
Directed Graph BFS without all nodes reachable
I'm doing a breadth-first search on a digraph. I'm lost at nodes c and f, and I'm not sure if and how they should be in the BF-tree or if you only go as far as reachable from the source node and don't ...
0
votes
1answer
63 views
How to get all polygons from a set of points
I need to get all polygon combinations (convex and concave) from a set of points and don't see the way to do it.
I'm thinking in this two approaches
Check for each combination to be a planar graph ...
0
votes
2answers
32 views
I'm trying to perform the transitive reduction of directed graph in Python
As a warning, I'm still a bit inexperienced in python
I'm trying to perform the transitive reduction of directed graph using the networkx library. I've figured out an algorithm but I'm having trouble ...
0
votes
1answer
57 views
I have a code to generate cycles in a graph but it gets slow when the points are more
My code is as follows but it took 3 minute to give an output is there a faster technique to find cycles in an undirected graph:
When the inputs are less as follows
{1, 2}, {1, 3}, {1, ...
0
votes
1answer
38 views
matlab minimum spanning tree keep busy
I use the grMinSpanTree function in matlab toolbox. but when the number of nodes is high it will keep running and busy.
I tried a lot of samples and they all work well when node number is below 4000. ...
2
votes
2answers
33 views
DFS visitor does not traverse detached vertices
I have a graph represented by adjacency list. I apply depth_first_visit algorithm for it. Everything works almost OK.
The problem is that the algorithm visits only vertices, which are connected with ...
2
votes
1answer
70 views
Crab Graphs, Algorithms, Graph Theory, How is this network flow?
Can somebody please help me out with this problem? The solution is apparently using network flow but I am not very familiar with network flow. How does network flow help you solve this?
A crab is an ...
-1
votes
2answers
36 views
How do you solve minimum path of a graph with weighted vertices?
A traveler pays tax at each vertex of a graph including his starting vertex, how do I compute the minimum tax he pays from his starting vertex to every other vertex of the graph. The graph is ...
0
votes
2answers
46 views
Ways to construct an ornamet from dif. color beads (graph theory algorithm)
There are N colors of beads. You have bi beads of the ith color. You want to make an ornament by joining all the beads together. You create the ornament by using the following algorithm:
Step #1 ...
0
votes
1answer
35 views
Floyd-Warshall algorithm in the case when a negative circle may exist
I am looking at the Floyd-Warshall algorithm.
let dist be a |V| × |V| array of minimum distances initialized to ∞ (infinity)
// part 1
for each vertex v
dist[v][v] ← 0
// part 2
for each edge ...
0
votes
1answer
54 views
Fastest algorithm to detect if there is negative circle in a graph
I use a matrix d to present a graph. d.(i).(j) means the distance between i and j; v denotes the number of nodes in the graph.
It is possible that there is negative circle in this graph.
I would ...
2
votes
3answers
83 views
What is an incident edge? [closed]
Two edges of a graph are called adjacent (sometimes coincident) if they share a common vertex. Two arrows of a directed graph are called consecutive if the head of the first one is at the nock (notch ...
-1
votes
2answers
64 views
What is the best way to represent a graph?
I want to build a data structure for graph, which of the following will you advise me to use?
struct Edge{
int from;
int to;
int weight;
}
dir is to specify if the graph ...
-4
votes
0answers
42 views
How is a* algorithm optimal [closed]
I am completely new to artificial intelligence and in context to this diagram I have a doubt that here A needed to compute all the possible paths. Then how come is it useful? And in Rich and knight ...
1
vote
1answer
28 views
S-expression for directed acyclic graph?
as we know tree structure could be represented in S-expressions. For example
(5 (4 (11 (7 () ()) (2 () ()) ) ()) (8 (13 () ()) (4 () (1 () ()) ) ) )
But is it possible to use S-expression for a ...
0
votes
1answer
39 views
How to Partition a graph into possibly overlapping parts such that any vertex contained in a part has at least distance k from the Boundary?
How to partition a graph into possibly overlapping parts such that any vertex is contained in a part at which it has at least distance k from the Boundary?
The problem arises in cases where the whole ...
3
votes
2answers
32 views
Do directed cyclic graphs have leaves?
Is the notion of leaf only restricted to trees?
Let's say I have a directed cyclic graph. Would it be a mistake to name the nodes having only outgoing edges leaves?
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 ...
1
vote
1answer
341 views
Is this related to a graph cut-edge (bridge)? Find the fast path in time from home to a shop/store
In http://codility.com/, exist a problem that say:
There are N squares in your neighborhood and M direct roads connecting
them. The squares are numbered from 0 to N − 1. You are living in
...
1
vote
1answer
52 views
Find a maximum tree subgraph with given number of edges that is a subgraph of a tree
So a problem is as follows: you are given a graph which is a tree and the number of edges that you can use. Starting at v1, you choose the edges that go out of any of the verticies that you have ...
1
vote
1answer
70 views
Finding all vertices on negative cycles [closed]
I know that the problem of checking whether given edge of a weighted digraph belongs to a negative cycle is NP-complete (Finding the minimal subgraph that contains all negative cycles) and ...
2
votes
1answer
90 views
Shortest path with a fuel tank
This is an homework question and I'd be happy for some guidance.
Let G=(V,E) be an undirected graph where each vertex represents a city, and the edges have weights that represents travel distances. ...
1
vote
0answers
44 views
Creating fixed size groups based on matching attributes and minimizing the number of un-grouped entites
my problem is this:
I have a list of people, each person has a certain number of Facebook likes. I want to partition those people into N groups such that, for each group, every member shares at least ...
2
votes
1answer
67 views
What is the maximum number of possible topological sorts of N-order Direct Acyclic Graph?
I need to find the maximum number of topological sorts on Direct Acyclic Graph of N-order. I've checked by running Depth first search algorithm on various Direct Acyclic graphs, and it looks like it ...
-1
votes
0answers
38 views
variation of hungarian algorithm [closed]
Can someone suggest an algorithm to solve job assignment problem with condition?
With condition means that some jobs cannot be done by some workers. For example table as shown below:
In this table ...
2
votes
1answer
60 views
Find a cut in graph that divides the graph to approximately equal two subgraphs
Is there a practical algorithm (not NP-hard) that can cut a graph into two approximately equal sub-graphs (e.g., One sub-graph has 40%-50% vertices), in the meantime, prove that the cut is the minimal ...
2
votes
1answer
54 views
Graph labeling in which two cycles share at most one vertex
Good morning. My friend gave me an interesting graph problem which goes as below.
Given a simple graph in which two cycles share at most one vertex, how to label edges with non negative real number ...
0
votes
1answer
38 views
Why do we look for the shortest augmenting path in the Hopcroft-Karp algorithm?
In the Hopcroft-Karp algorithm for maximum bipartite matching, why do we always look for the shortest augmenting path in the breadth first search? Is it because the breadth first search always finds ...
0
votes
1answer
19 views
Remove noise in a graph
Let G=(V,E) be a DAG. V is the set of vertices in the graph, while E is the set of edges connecting the vertices in V.
Assume that noise is introduced in the graph, i.e., some non-existing edges are ...
2
votes
4answers
171 views
Can I use Dijkstra algorithm for negative weighted graph?
I know Bellman Ford algorithm works well with negative weighted Graph, But I've developed a code of Dijkstra Algorithm that works very well. But it fails when I insert negative weighted edges. Any ...
0
votes
2answers
92 views
Finding ALL paths between 2 points on a square Matrix
READ CAREFULLY BEFORE MARKING AS DUPLICATE!
I have a matrix:
0 0 0 x 0
0 0 0 0 0
0 0 0 0 0
0 x 0 0 0
0 0 0 0 0
You CANNOT move diagonally in the matrix!
I want to find ALL possible paths between ...
0
votes
2answers
90 views
Randomize the placement of vertices in jgraph
I have created an application with the help of jgraph for the visualization. I have couple of problems regarding this.
1: I need to change the names of Vertices according to an attribute of the ...
2
votes
1answer
90 views
Shortest path while walking x unique nodes
I have a graph, where all my nodes have a calculated distance to each other.
Now, I want to start at my startNode, and then find the path with the lowest calculated value, as long as the path has X ...
1
vote
1answer
49 views
Finding maximum score in a “bubble pop” game
[Reposting this from math.stackexchange]
Consider the following game: there is a n×n field, where each cell is randomly coloured in one of m colours. Let a group of cells be a set of same-coloured ...
8
votes
3answers
181 views
How can I order a list of connections
I currently have a list of connections stored in a list where each connection is a directed link that connects two points and no point ever links to more than one point or is linked to by more than ...
0
votes
1answer
63 views
Which algorithm for constructing minimal ways most optimal?
By what algorithm can find the shortest path through all the vertices of the graph? Would a Dijkstra's algorithm?
1
vote
0answers
58 views
Finding the indices of all edges within k steps from a chosen line in an adjacency matrix in MATLAB
I have a function where I can find all nodes k number of steps from any initial set of nodes in a sparse adjacency matrix. Normally this intial set is the to-from node for a single branch. I want a ...
2
votes
1answer
58 views
Finding shortest cycles containing two nodes
Let G=(E,V) be a directed graph with non-negative edge costs. Let s be a vertex. I need to find an algorithm that finds for each vertex v, the shortest cycle that contains both s and v. The cycle may ...
1
vote
2answers
102 views
How can you make an adjacency matrix which would emulate a 2d grid
Basically just want to know what a good way to do this is in python, I have done this before with a kind of bruteforce way also in python but it just doesnt to be the intuitive way. So if anyone could ...
1
vote
0answers
48 views
2-3-4 tree height
I observed that the height of a 2-3-4 tree can be different depending of the order of insertion of nodes.
e.g. 1,2,3,4,5,6,7,8,9,10 will yield a tree of height 2
While inserting in this order:
e.g. ...
-1
votes
2answers
110 views
Find a vertex disjoint path from source to destination
Is there a deterministic algorithm to check if a graph contains a vertex-disjoint path from a source to destination, with complexity O(nm^2) (n is number of vertices, m is number of edges) or is this ...
1
vote
0answers
28 views
library for SNA network and graph in R with extra dimensionality
I have a csv of the following format:
person, location, time_of_day, money_spent
I've been going through and seeing how to format data to make it work with the more popular libraries (see: ...
1
vote
2answers
130 views
How is Floyd-Warshall a Dynamic Algorithm?
Since the Floyd-Warshall algorithm is dynamic, that means that it must provide an optimum solution at all times, right? So what's confusing me is what the nature of these optimum solutions is during ...
0
votes
2answers
56 views
Template Parameters in Graph Class Based on STL's map Class
I am writing a header file for a simple graph class implemented using the STL's map class. However, I am having issues with the template parameters, it seems to be telling me that I can't declare ...
1
vote
2answers
46 views
Consensus on multiple graphs
Let G = (V,E) be a Directed Acyclic Graph (DAG). V is the set of vertexes, while E is the set of edges.
Now, suppose that G is corrupted by some annotators in a crowd, according to the crowdsourcing ...
2
votes
1answer
84 views
Optimal layout of nodes in small grid where the node output is a function of what nodes it's adjacent to
The generic goal
Say we have a "small" 10x10 grid with some fixed nodes @ placed at random positions
. . . . . . . . . .
. . . . . . . . . .
. . . @ . . . . . .
. . . @ . . . . . .
. . . . . . . ...
0
votes
1answer
127 views
Efficient way of converting large adjacency matrices to edge lists in MATLAB?
I have large sparse adjacency matrices with around 1M nodes, which I am processing with MATLAB. I want to convert these matrices into network edge lists as efficiently as possible. As an example ...



