Graph Algorithms are a sequence of well-defined steps that will solve a problem related to Graph Theory, where a Graph in this context is a collection of vertices ("nodes") and edges that connect these vertices.
0
votes
0answers
25 views
where can I find a library that implements Graph cut in C#
Is there any implementation of graphcut in C#? I could not find it as part of aforge.net
Any other library with it?
0
votes
0answers
29 views
Given a undirected graph, how to find the maximum amount edge-disjoint paths between two nodes?
A possible solution is using max-flow algorithm. Does any more efficient algorithm? Equivalently, does any special algorithm for binary max-flow algorithm?
-3
votes
0answers
36 views
How to find all spanning trees of undirected graph? [closed]
How to find all spanning trees of undirected graph?
Or if it will be faster how to find best k spanning trees of undirected graph?
I need pseudocode or code in C++.
Also I found algorithm for ...
2
votes
1answer
49 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 ...
4
votes
3answers
84 views
Graph Has Two / Three Different Minimal Spanning Trees ?
I'm trying to find an efficient method of detecting whether a given graph G has two different minimal spanning trees. I'm also trying to find a method to check whether it has 3 different minimal ...
2
votes
1answer
45 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 ...
2
votes
3answers
99 views
Detecting cycles in an adjacency matrix
Let A be the adjacency matrix for the graph G = (V,E). A(i,j) = 1 if the nodes i and j are connected with an edge, A(i,j) = 0 otherwise.
My objective is the one of understanding whether G is acyclic ...
0
votes
1answer
39 views
Network Design: Why is Minimum Spanning Tree so widely used in Network Design
Recently I am really interested in Network Design. Right now I am reading about Minimum Spanning Tree. However I cannot find more than two reasons to use it:
- minimize total cost of cable used to ...
1
vote
0answers
21 views
Directed or bi-directed and MSSP
Firstly i wanted to ask. If I have a undirected graph and split all the edges into two directed edges is it still called directed or it becomes bi-directed?
The main question is i have a graph with ...
-1
votes
1answer
188 views
Courier delivery with A* algorithm
I have to make a program which can calculate the shortest path to finish all deliveries.
The map is represent as x, y coordinate and the path is calculated using Manhattan distance(so go along x and ...
0
votes
1answer
53 views
Finding edge connectivity of a network by using Maximum Flow algorithm
I want to find the edge connectivity (i.e. minimum number of edges to remove to disconnect a graph) of an undirected graph using maximum flow algorithms (Edmond Karp / Ford-Fulkerson algorithms) ,
I ...
0
votes
1answer
56 views
scheduling/ matching/ preference algorithm
I have this problem but not sure what algorithm it belongs to.
We are trying to make a scheduling system where the users can choose the time preferences and then they are grouped into classes with ...
-1
votes
0answers
32 views
Can anybody give me some tips on how to compute out all the equal cost multi-paths (ECMP) in an undirected graph? [closed]
Supports we have an undirected graph G, which each edge has the same weight (like cost=1).
And we need to compute out all the shortest paths from given vertex s to t, all of the paths have the same ...
1
vote
2answers
71 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
votes
0answers
71 views
Search on Edmonds-Karp Algorithm [closed]
I was implementing Edmonds Karp algorithm and found out this.
Let's suppose you have a network
N = (V, E, C) where V is the set of vertex, E the set of edges and C the function that assigns a ...
-5
votes
0answers
56 views
Algorithms (UCS),Best First Search,A* Search
I have an exercise to make:
Implement a program that builds a busy graph-grid as follows:
First construct an n x n grid as shown in the figure below (left).
Then randomly remove some edges (e.g. ...
2
votes
1answer
26 views
Feedback on algorithm for Steiner Tree with restrictions
For an assignment, I have to create a Steiner Tree. However, this is not a typical Steiner Tree, as the graph structure we're required to use does not allow insertion of new vertices. Rather, the ...
0
votes
1answer
27 views
Neo4j's GraphAlgoFactory
Is there a way to represent the following query using GraphAlgoFactory for Java?
START n=some_node, m=some_other_node
MATCH p = n-[*..10]->m
WHERE ALL (x in nodes(p) WHERE (x.title? =~ "regex"))
...
1
vote
1answer
93 views
difference between Bellman Ford and Dijkstra's algorithm
2 1
1----------2---------4
| | |
|3 |3 |1
| 6 | |
3---------5 ---------
Ok, so this is the graph. My source node is 1 and destination ...
0
votes
0answers
74 views
Javascript - Bron-Kerbosch, Girvan-Newman algorithm (max cliques/communities in graph)
I am searching for an Javascript implementation of the Bron-Kerbosch algorithm or Girvan-Newman algorithm.
Basically I want to color maximal cliques/communities in an undirected graph.
Sadly, I ...
1
vote
1answer
59 views
Decide whether there is a MST that contains some edges of 2 distinct edge sets
Let G = (V, E) be a weighted, connected and undirected graph. Let T1 and T2 be 2 different MST's. Suppose we can write E = (A1 U B U A2) such that:
B is the intersection of the edges of T1 and T2, and
...
0
votes
1answer
61 views
How To Solve Recurrence Relation with a quadratic term
I'm trying to solve this recurrence relation. Here's what I've attempted so far, but I think I'm wrong. I would really appreciate some guidance.
This is the recurrence relation I am trying to solve:- ...
0
votes
2answers
53 views
Unknown algorithm name
I have a matching problem, and have designed a method of solving it.
I need to know if an algorithm exists, if so the name, for the following situation, I have looked a lot, but cannot find anything. ...
1
vote
1answer
32 views
Analysis of Algorithms Notation Confirmation
I'll go ahead and mention that this is homework, but I'm not seeking typical homework help. I'm just wanting confirmation on wording of the question. The question states that my algorithm should be ...
2
votes
0answers
73 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
3answers
80 views
Optmization between nodes having several routes with price and distance as constraints
I'm designing an Android application where I'm trying to find an optimal solution in a situation like this:
Suppose we have several different routes between a source and destination, and each route ...
-3
votes
1answer
53 views
Weighted acyclic directed grahs [closed]
From Skienas book, I couldnt solve this:
Let G = v,e be a weighted acyclic directed graph with possibly negative edge weights. Design a linear-time algorithm to solve the single-source shortest-paths ...
-2
votes
1answer
52 views
Eliminating vertices from a graph [closed]
From Skiena's Book,
Design a linear-time algorithm to eliminate each vertex v of degree 2 from a graph by replacing edges (u,v) and (v,w) by an edge (u,w). We also seek to eliminate multiple copies ...
2
votes
1answer
141 views
Algorithm for finding a Hamilton Path
I am referring to Skienna's Book on Algorithms.
The problem of testing whether a graph G contains a Hamiltonian path is NP-hard, where a Hamiltonian path P is a path that visits each vertex exactly ...
-1
votes
1answer
58 views
Tree, a DAG, directed acyclic graph and my approach [closed]
first of all - great site!
Here is my problem, I am studying for an interview, and I ran into this problem,
http://i.stack.imgur.com/JmdER.png
I am asked, Suppose an arithmetic expression is given ...
4
votes
3answers
142 views
How to find the shortest path between nodes?
I am working on a mapping application that finds the shortest route between the things a user wants. Each thing the user wants (such as bread or gas) has multiple possible locations. Currently, I am ...
0
votes
1answer
29 views
Disjoint edge finder algorithm analysis
I have an algorithm to find the set of edge-disjoint paths in an undirected graph.
Start with a list of all edges in the graph
While there are still available edges in the list, execute ...
2
votes
1answer
44 views
Optimal distribution of power plants on a city
I've searched both Google and Stack Overflow for an answer to my problem but I can't find one.
I need to find the optimal distribution for the power network of a city. The city is represented by a ...
1
vote
2answers
83 views
why is DOM tree oder preorder, depth-first traversal?
why is DOM tree oder preorder, depth-first traversal?
What are the advantages of this design choice compared to other traversal like BFT?
I was just looking into DOM standard link and found the ...
0
votes
2answers
50 views
Calculating weight of subgrah
I need to ask for your help, as I've been struggling with my problem for many days and didn't find any suitable solution. I want to find weight of subgrah that contains node (going to be a parameter ...
1
vote
1answer
449 views
Dijkstra's algorithm pseudocode
I'm trying to write Dijkstra's algorithm in C++, and there are countless examples on the internet but I just can't seem to grasp how the examples work. I'd rather do it in a way that makes sense to me ...
1
vote
1answer
151 views
Finding cycles in a graph (not necessarily Hamiltonian or visiting all the nodes)
I have graph like one in Figure 1 (the first image) and want to connect the red nodes to have cycle, but cycles do not have to be Hamiltonian like Figure 2 and Figure 3 (the last two images). The ...
-2
votes
1answer
20 views
Formula to calculate groups for graph [closed]
I working on graphs using JFreeChart library to generate a barchart.
Example Scenario: considering the data will be in arrays/arraylist.
Using the above table data, I have to generate below ...
1
vote
1answer
86 views
Why this implementation of Bellman-Ford doesn't work?
The following example contains a negative cycle, and yet the program doesn't seem to find it. Can someone point out what is wrong? It is supposed to print out a negative cycle if one exists, but the ...
4
votes
3answers
114 views
Algorithm to generate an undirected graph with path to all nodes with a maximum degree?
I'm trying to generate an undirected graph in which each node has a maximum degree associated with it. That is, if a node has a maximum degree of 2, it can connect to at most two nodes (connected node ...
-1
votes
1answer
91 views
Implement maze generation algorithm in Javascript [closed]
I understand the "Depth-First" maze geerating algorithm but I need a little help implementing it with Javascript.
0
votes
2answers
106 views
Dijkstra algorithm complexity anaylsis misunderstanding
Given the following algorithm from Cormen book:
DIJKSTRA(G,w,s)
1. INITIALIZE-SINGLE-SOURCE(G,s)
2. S <-- {0}
3. Q <-- V[G]
4. while (Q != {0})
5. do u <-- extract-min(Q)
6. s <-- ...
1
vote
2answers
73 views
Finding coordinates of Hexagonal path
I am trying to convert a movement along a straight line ( 2 points) to a movement along Hexagonal path, I tried different formula and did not work.
I would like to find out the coordinates of ...
4
votes
1answer
139 views
Max weight euclidean spanning tree
A maximum spanning tree can be found by running kruskal's algorithm(just changing the edges function and considering the max weight edges first). I am interested in finding the max weight euclidean ...
0
votes
1answer
77 views
Bridge determination in undirected graphs
I need to determine all critical edges in an undirected graph, in O(V+E) time. From what I found out, I need to use a modified DF search, but all pseudo-code algorithms I found have low[v] and d[v] ...
2
votes
4answers
114 views
is there is a route from city a to city b in no more than x days?
I was in a trading firm interview, I was asked this question,
you are travelling accross the state in a buses, the buses can stop at any C possible cities and you need to find a way to go from city ...
1
vote
0answers
117 views
Deleting element in Binary Search Tree (BST)
I have difficulties with deleting element from BST. This code is based on algorithm from Cormen's book. Here are two functions needed to delete element:
el *TreeSuccessor(el *x)
{
el *y;
if ...
4
votes
2answers
84 views
Maximizing expected gain in a social network with probability
I am required to solve a specific problem.
I'm given a representation of a social network.
Each node is a person, each edge is a connection between two persons. The graph is undirected (as you would ...
-2
votes
1answer
44 views
Math model for determining more relevance set of rules
I have some string as input data, it's a GET request. There are also set of some rules that applying to that input string. So, for instance, rule can be "input parameter1 equals bla-bla-bla" or "input ...
6
votes
2answers
144 views
algorithm to resolve version scope based dependency
I have a problem on a dependency algorithm, the dependency is similar to maven dependency, except it's strict version scope based.
For example:
component A, version 1 depends on: component B, ...
