Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
3answers
218 views

Asking for algorithm to find N Knights global shortest path

I've stampled upon a curious problem. I've got an unbounded chessboard, N knights starting locations and N target locations. The task is to find minimal number of moves for all knights to reach all ...
5
votes
3answers
135 views

Dijkstra’s shortest path algorithm

The following is algorithm summary given to us by our professor. What is the parent of a node in a graph as referred to in step 3? I'm a little confused as I though that the nodes only had ...
5
votes
2answers
206 views

A* algorithm not working properly

I need some help with my A* algorithm implementation. When I run the algorithm it does find the goal, but the path is definately not the shortest :-P Here is my code, please help me spot the bugs! I ...
3
votes
1answer
114 views

algorithm to traverse points horizontally and vertically

There are n points in the 2D plane. A robot wants to visit all of them but can only move horizontally or vertically. How should it visit all of them so that the total distance it covers is minimal?
2
votes
3answers
180 views

For every vertex in a graph, find all vertices within a distance d

In my particular case, the graph is represented as an adjacency list and is undirected and sparse, n can be in the millions, and d is 3. Calculating A^d (where A is the adjacency matrix) and picking ...
2
votes
3answers
1k views

Optimizing Dijkstra for dense graph?

Is there another way to calculate the shortest path for a near complete graph other than Dijkstra? I have about 8,000 nodes and about 18 million edges. I've gone through the thread "a to b on map" and ...
1
vote
1answer
60 views

Prolog shortest Path Finding no repeat

I got this code to return a shortest path between 2 citys: goal(Z,Path, Cost):- A = mycity, caminhAux2(A,[Z],0,Path, Cost). caminhAux2(A,[A|Path1],Cost1, [A|Path1], Cost1). caminhAux2(A,[Y|Path1], ...
1
vote
1answer
30 views

how to enable the shortest match rule in flex (lexer)?

By default flex uses the longest match rule. Is there any way to override this behavior to make it match the shortest sequence? Thank you
1
vote
2answers
339 views

C++ Recursively find shortest path in horizontal cylinder.(Problem with recursion)

This program should return the weight of the shortest path from left to right(it also can go over the top and over the bottom, so it's like a horizontal cylinder) in two-dimentional array.(here is a ...
1
vote
3answers
150 views

What's faster? Searching for shortest path in a matrix or a list?

I have to store some cities and the distances between some of them and then search for the shortest path. The cities and the distances are read from a file. I started with doing a matrix but saw that ...
1
vote
1answer
971 views

Return shortest path with Breadth-first search in prolog

I would like to find the shortest route from station A to station B in prolog in bidirectional graph(if A is connected to B than B is connected to A),the graph has no weights on branches. The question ...
1
vote
2answers
129 views

search of the K-first short paths algorithm

I have found many algorithms and approaches that talk about finding the shortest path or the best/optimal solution to a problem. However, what I want to do is an algorithm that finds the first ...
1
vote
1answer
1k views

Finding all the shortest paths between two nodes in unweighted directed graphs using BFS algorithm

I am working on a problem that I need to find all the shortest path between two nodes in a given directed unweighted graph. I have used BFS algorithm to do the job, but unfortunately I can only print ...
1
vote
3answers
1k views

Shortest path in a map

I have designed a weighted graph using a normalized adjacency list in mysql. Now I need to find the shortest path between two given nodes. I have tried to use Dijkstra in php but I couldnt manage to ...
0
votes
1answer
32 views

Variation (complex?) on the shortest path

I have the following problem. Given a directed graph G=(V,E) with edge costs cij between all edges {i,j}. We have multiple sources, say s1,...,sk, and one target, say t. The problem is to find the ...
0
votes
2answers
119 views

.net shortest string regular expression

How to find shortest string, first occurance it should return I have this string. I m looking for td whose value contains blabla with closing td. For ex: <tr blabla><td>blabla big ...
0
votes
1answer
220 views

Shortest Path: Bellman-Ford vs. Johnson

I have difficulties in understanding the usefulness of the Johnson Algorithm. I think the question must sound really stupid for someone with knowledge in this are, but I cannot figure it out. ...