What are Graphs? And what are Graph Algorithms? Graph Theory is the study of mathematical structures that model objects and the relations between objects. These structures, known as graphs, are collections of vertices, or nodes, and edges which join them together. There are many variations on ...
28
votes
5answers
533 views
String analysis
Given a sequence of operations:
a*b*a*b*a*a*b*a*b
is there a way to get the optimal subdivision to enable reusage of substring.
making
a*b*a*b*a*a*b*a*b => c*a*c, where c = a*b*a*b
and ...
14
votes
3answers
566 views
Finding good heuristic for A* search
I'm trying to find the optimal solution for a little puzzle game called Twiddle (an applet with the game can be found here). The game has a 3x3 matrix with the number from 1 to 9. The goal is to bring ...
12
votes
3answers
280 views
Finding a shortest path that passes through some arbitrary sequence of nodes?
In this earlier question the OP asked how to find a shortest path in a graph that goes from u to v and also passes through some node w. The accepted answer, which is quite good, was to run Dijkstra's ...
11
votes
10answers
806 views
best algorithm for finding distance for all pairs where edges' weight is 1
As the title said, I'm trying to implement an algorithm that finds out the distances between all pairs of nodes in given graph. But there is more: (Things that might help you)
The graph is ...
10
votes
4answers
449 views
Algorithm design to assign nodes to graphs
I have a graph-theoretic (which is also related to combinatorics) problem that is illustrated below, and wonder what is the best approach to design an algorithm to solve it.
Given 4 different graphs ...
10
votes
5answers
190 views
Pathway/road laying problem
Today we got an assignment to complete in lab (in two hours). The question was:
You're given an m*n matrix.
The matrix has 'h' residential halls and 'b' main building entrances.
The location of ...
10
votes
7answers
321 views
help with number calculation algorithm [hw]
I'm working on a hw problem that asks me this:
given a finite set of numbers, and a target number, find if the set can be used to calculate the target number using basic math operations (add, sub, ...
9
votes
1answer
235 views
Finite Metric Embeddings: Good Algorithm?
I have a finite metric space given as a (symmetric) k by k distance matrix. I would like an algorithm to (approximately) isometrically embed this in euclidean space R^(k-1). While it is not always ...
8
votes
2answers
168 views
Eliminating symmetry from graphs
I have an algorithmic problem in which I have derived a transfer matrix between a lot of states. The next step is to exponentiate it, but it is very large, so I need to do some reductions on it. ...
7
votes
3answers
122 views
Algorithm for finding distinct paths from A to B in weighted, directed, cyclic graph
Suppose we have a DIRECTED, WEIGHTED and CYCLIC graph.
Suppose we are only interested in paths with a total weight of less than MAX_WEIGHT
What is the most appropriate (or any) algorithm to find the ...
7
votes
3answers
295 views
Min s-t cut in a network
I am trying to simulate a network of wireless sensor nodes in order to research about the robustness of the network. I am faced with the following problem:
I have a network of nodes with some edge ...
7
votes
1answer
300 views
Haskell: Common Corecursive Fallacies
So I was thinking about a graph distance algorithm tonight, and came up with this
while I was driving in the car:
module GraphDistance where
import Data.Map
distance :: (Ord a) => a -> Map a ...
7
votes
2answers
487 views
How to get the cut-set using the Edmonds–Karp algorithm?
I implemented the Edmonds–Karp algorithm using the Pseudocode that I found in the Edmonds–Karp algorithm wiki page: http://en.wikipedia.org/wiki/Edmonds%E2%80%93Karp_algorithm
It works great, yet the ...
7
votes
5answers
1k views
How to choose an integer linear programming solver?
I am newbie for integer linear programming.
I plan to use a integer linear programming solver to solve my combinatorial optimization problem.
I am more familiar with C++/object oriented programming on ...
7
votes
3answers
1k views
Reverse Breadth First traversal in C#
Anyone has a ready implementation of the Reverse Breadth First traversal algorithm in C#?
By Reverse Breadth First traversal , I mean instead of searching a tree starting from a common node, I want ...
6
votes
3answers
93 views
Dealing with Massive Graphs - Traveling Salesperson
I'm teaching myself how to program algorithms involving TSPs (Djikstra, Kruskal) and I'm looking for some start up advice. I am working with C# and SQL. Ideally I'd like to be able to do this ...
6
votes
2answers
78 views
Finding longest chains of matching devices
Set A has n devices. Set B has m devices. Some devices in A are compatible with the devices in B, and some devices in B are compatible with those in A.
I want as many compatible devices connected to ...
6
votes
3answers
216 views
Divide-And-Conquer Algorithm for Trees
I am trying to write a divide & conquer algorithm for trees. For the divide step I need an algorithm that partitions a given undirected Graph G=(V,E) with n nodes and m edges into sub-trees by ...
6
votes
1answer
448 views
find the minimum sum of matrix (n x n) that select only one in each row and column
this is another algorithms problem related to dynamic programming
Here is the problem :
find the minimum sum of the given matrix such that select one in each row and column
For example :
3 4 2
8 ...
5
votes
0answers
90 views
Route Planner for buses for a mega city [closed]
This is not exactly a question but more that I need your ideas and opinions and to point out a few resources if you have done this in the past.
I am working on a transportation planner for a city. ...
5
votes
1answer
205 views
Directed graph with max indegree of a vertex
I was trying to look at few applications of network flow when I came across this problem:
We begin with a directed graph, G = (V,E). We need to add more edges to the graph such that we have \forall ...
5
votes
1answer
180 views
Why does my a-star algorithm expand too many nodes despite having a correct heuristic?
I'm doing an assignment where I have to use a-star to solve a 15-puzzle (in C).
The heuristic function is Manhattan distance (aka taxicab distance).
We are given a sample input/output where the ...
5
votes
1answer
132 views
How do I create a random path?
I'm looking for an algorithm that can generate something like what's in this image:
I've read about drunken walk algorithms but they don't seem to quite fit what I need. I'm not sure if I can ...
5
votes
2answers
214 views
What is the problem name for Traveling salesman problem(TSP) without considering going back to starting point?
I would like to know what is the problem name for TSP w/o considering the way of going back to starting point and what is the algorithm to solve this.
I looked into Shortest path problem but that is ...
5
votes
1answer
200 views
Subgraph enumeration
What is an efficient algorithm for the enumeration of all subgraphs of a parent graph. In my particular case, the parent graph is a molecular graph, and so it will be connected and typically contain ...
5
votes
3answers
347 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 ...
4
votes
3answers
108 views
Find path with least weight from a bunch of possible paths
I needed some help/pointers on a homework problem. I would really appreciate it if someone could point me in the right direction on how to go about solving this problem :)
Assignment
"An angry ...
4
votes
1answer
83 views
Topological sort, but with a certain kind of grouping
It seems this must be a common scheduling problem, but I don't see the solution or even what to call the problem. It's like a topological sort, but different....
Given some dependencies, say
A -> ...
4
votes
3answers
136 views
Construct a minimum spanning tree covering a specific subset of the vertices
I have an undirected, positive-edge-weight graph (V,E) for which I want a minimum spanning tree covering a subset k of vertices V.
I'm not limiting the size of the spanning tree to k vertices; rather ...
4
votes
8answers
150 views
Finding X the lowest cost trees in graph
I have Graph with N nodes and edges with cost. (graph may be Complete but also can contain zero edges).
I want to find K trees in the graph (K < N) to ensure every node is visited and cost is the ...
4
votes
1answer
201 views
Diagram connector algorithm
I’m building an application that superficially looks like Visio, so I need to be able to connect objects together with connectors. I want to make the connectors have multiple horizontal and vertical ...
4
votes
0answers
214 views
shortest paths & geodesics
given a mesh made entirely of quads, where every vertex has valence n (with n >= 3), and does not lie on the same plane, I need to find the distance of every vertex in the mesh from a closed set of ...
4
votes
4answers
399 views
Negative weights using Dijkstra Algorithm
I am trying to understand why Dijkstra will not work with negative weights. Reading an example on Shortest Paths, I am trying to figure out the following scenario:
2
A-------B
\ /
3 \ / -2
...
4
votes
1answer
296 views
Graph theory - chromatic index
I have to make a program which will say if graph is d colorable or not - basically i have to check if chromatic index is d or d+1, where d is max degree of all vertices (vizing's theorem). I know this ...
4
votes
2answers
287 views
Map Reduce algorithm for removing cycles from a graph
This question has a great answer for detecting cycles in a directed graph. Unfortunately, it does not seem easy to make a Map Reduce version of it.
Specifically, I am interested in a Map Reduce ...
4
votes
1answer
122 views
algorithm of the 'No-three-in-line problem'?
Are there some kind of mature No-three-in-line problem algorithm in popular languages ( such as Java, C#, Ruby, JavaScript etc) ?
Thanks.
4
votes
1answer
572 views
How to find the shortest simple path in a Tree in a linear time?
Here is a problem from Algorithms book by Vazirani
The input to this problem is a tree T with integer weights on the edges. The weights may be negative,
zero, or positive. Give a linear time ...
4
votes
2answers
1k views
Open Source Graph Layout Library
I'm looking for an open source (GPL, LGPL etc) graph layout library for .net framework, preferably fully managed code. Im not worried about the visualisation aspect of things.
I can find lots of them ...
3
votes
1answer
72 views
Why does Dijkstra's algorithm use decrease-key?
Dijkstra's algorithm was taught to me was as follows
while pqueue is not empty:
distance, node = pqueue.delete_min()
if node has been visited:
break
else:
mark node as ...
3
votes
3answers
93 views
What are some pagerank alternatives?
This is strictly related to the graph algorithm(not SEO or anything). I'm interested in knowing if there are other algorithms out there that solely use the structure of a graph(not content like ...
3
votes
1answer
92 views
Implementation of BFS, DFS and Dijkstra
Is it true that the implementation of BFS, DFS and Dijkstra are almost the same, except that BFS uses queue, DFS uses stack, while Dijkstra uses min priority queue?
More precisely. Can we use the ...
3
votes
4answers
72 views
Creating a bus route
What is a good algorithm, or class of algorithms that can be used to create a bus route?
I was thinking something along the lines of algorithms that are used to solve the Traveling Salesman, or ...
3
votes
3answers
89 views
Dijkstras Algorithm doesn't appear to work, my understanding must be flawed
Here's my interpretation of how Dijkstra's algorithm as described by wikipedia would deal with the below graph.
First it marks the shortest distance to all neighbouring nodes, so A gets 1 and C gets ...
3
votes
1answer
80 views
Graph algorithm and theories for logistic application?
Well, that's quite a complex issue but i'll try to describe my goals.
Objective: Given a set of n geolocated nodes (jobs) i must to distribute it to y employees (sub-graphs?), daily.
The complexity ...
3
votes
2answers
125 views
Modifying shortest path to get a min-cost path
If we modify the shortest path problem such that the cost of a path between two vertices is the maximum of the costs of the edges on it, then for any pair of vertices u and v,
the path between them ...
3
votes
1answer
99 views
Hydrate a tree from a table
I have a DataTable with all of my nodes in it. They were serialized to database. I want to create an object graph (hierarchical) representation of the data. There seem to be a few methods for doing ...
3
votes
1answer
49 views
Finding linked elements
Good day!
I have a dictionary Dictionary<long, List<long>> where values of List can be keys of dictionary.
What I want to do is to separate keys and values of this dictionary to set that ...
3
votes
3answers
139 views
Cycles in a directed graph
Wondering if we can proof the the following or if it is already proved where can I get the proof.
Let v1,v2,v3...vn and t be n+1 vertexes in a directed graph. v1,v2,v3...vn form directed acyclic ...
3
votes
3answers
145 views
C/C++ Library for dynamic graphs?
I'm looking for a library to operate on dynamical graphs. I have a simulation where I must repeatedly calculate the average geodesic length for a graph after doing some changes in its structure ...
3
votes
2answers
74 views
Name for this distributed-database data-location optimization algorithm?
Say we have a large graph of databases connected to each other, effectively one giant distributed database. Any node on the graph can query the whole database by querying its neighbors recursively, ...