Dijkstra's algorithm, conceived by Dutch computer scientist Edsger Dijkstra is a graph search algorithm that solves the single-source shortest path problem for a connected graph with nonnegative edge path costs, producing a shortest path tree. This algorithm is often used in routing and as a ...
-2
votes
0answers
14 views
SPOJ ALMOST SHORTEST PATH [closed]
help in here, I'm trying to solve SPOJ's almost shortest path problem (SAMER08A), I have a Segmentation fault, do you see the problem????
I ran it xcode and it work perfectly, but I don't know ...
-3
votes
1answer
29 views
Dijkstra Graph as matrix cpp implementation [closed]
Is there book or site where I can find implemented Dijkstra in cpp for graph given as A matrix?
Something like int ShortestPath(int startID, int endID, int** path, int& pathLength)
And graph ...
3
votes
1answer
59 views
Trouble with Dijkstra , finding all minimum paths
We have a problem here, we're trying to find all the shortest paths in graph from one node to another. We have already implemented dijkstra but we really dont know how to find them all.
Do we have to ...
0
votes
1answer
78 views
Is the complexity of Dijkstra's correct?
I have a question regarding to runtime complexity of Dijkstra's algorithm. (see pseudo code in CLRS vertion 3):
DIJKSTRA(G, w, s)
1 INITIALIZE-SINGLE-SOURCE(G, s)
2 S ← ∅
3 Q ← V[G]
4 while Q != ∅
...
2
votes
4answers
118 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
1answer
110 views
Dijkstra's Algorithm in C
I am able to compile the code in g++ but for some reason when I run the program, it crashes after a few seconds.
I also realized the assignment was suppose to b in C but I don't know much about that ...
2
votes
4answers
132 views
FInding All Shortest Paths Between Two Vertices
Given a directed graph G=(V,E), two vertices s, t and two weight functions w1, w2, I need to find the shortest path from s to t by w2 among all the shortest paths between s to t by w1.
First of all , ...
-1
votes
0answers
53 views
Java: Dijkstra implementation - How to
I´m trying to figure out how to make this Dijsktra implementation work. Using this code I have the following output:
0 3 6 8 2 6 0 3 3 2
3 0 4 2 0 0 1 8 5 5
6 4 0 6 0 9 3 9 7 0
8 ...
0
votes
1answer
70 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
68 views
Priority queue/min heap for directed graph with Dijkstra's alg
For an assignment I need to implement Dijkstra's algorithm using a priority queue implemented as a min heap. I already have an implementation in which I use a distance table and an unordered array of ...
-8
votes
0answers
91 views
Getting a path for dijkstra [closed]
I implemented a Dijkstra's algorithm. Now I have all Distances from source. I also have a second parameter, target. How could I get the shortest path from source to target when I have distances? I was ...
-1
votes
1answer
184 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 ...
-2
votes
1answer
38 views
What underlying data structure to choose for dijkstra in grid-based graph?
My goals are:
high eficiency(speed)
programmer-friendliness
I'm running Dijkstra on graph whose vertices are positioned in a grid (with several "missing")
so the edge goes only to one of 8 ...
2
votes
1answer
51 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
1answer
35 views
Creating an unknown number of Nodes Java
I'm working on a program that implements Dijkstra's algorithm on a series of vertices and their edge weights input by a user. I do not know how many vertices the user is going to input until they ...
1
vote
0answers
61 views
Java - Creating Dynamic Vertex + Edges (Dijkstra Algorithm)
I'm trying to generate Vertex + edges dynamically, but I'm getting errors when I try to compute the shortest path between coordinates.
TestDijkstra3.java:
package maze_drawing;
import ...
0
votes
0answers
25 views
The most vital edge on the shortest path
I have this question form the Sedgewick's course on algorithms: "Critical edge. Given an edge-weighted digraph, design an E*log(V) algorithm to find an edge whose removal causes the maximal increase ...
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
2answers
44 views
Link state routing protocol - Dijkstras Algorithm
http://i.imgur.com/qxzx7D3.png
N- Network
R- Router
In the above picture you can see a question about link state routing protocol. When you are doing the Dijkstra algorithm for R3 for this, I know ...
2
votes
0answers
94 views
Dijkstra's algorithm on a graph whose edge weights are limited
Suppose we want to run Dijkstra's algorithm on a graph whose edge weights are integers in the
range {1,2,...,W}, where W is a relatively small number. How to find the shortest path from vertex s to t ...
1
vote
1answer
143 views
Multiple shortest paths using dijkstra
I am currently using Dijkstra Algorithm for find shortest path. This algorithm gives me best shortest path but I am want to have 2 or more paths. How can i achieve this. Algorithm is as following.
...
0
votes
0answers
45 views
python working with acyclic graph
Well i have store into a dictionary a graph.The graph has no cycles and looks like:
G={1:[2,3,4],2:[1],3:[1],4:[1,5],5:[4]}
So in the above example node 1 is connected to node 2,3,4, node 2 is ...
3
votes
4answers
123 views
Is BFS best search algorithm?
I know about Dijkstra's agorithm, Floyd-Warshall algorithm and Bellman-Ford algorithm for finding the cheepest paths between 2 vertices in graphs.
But when all the edges have the same cost, the ...
0
votes
1answer
42 views
Optimal path between source and destination - android
I'm new to android development and I've done some applications involving Google maps. What I'm trying to develop now is an Optimal Path Finder App. I know that there are many application already ...
1
vote
2answers
83 views
Dijkstra with a heap. How to update the heap after relaxation?
I am trying to implement Dijkstra algorithm.
foreach distance d
d = INFINITY
d[source] = 0
create_heap_based_on_Distances();
while(true)
bestedge = heap[0]
remove_minimum_from_heap ...
0
votes
1answer
14 views
More than one path in a directed graph?
I want to start building an app for public transport. I know I should use Dijkstra as the algorithm to find the shortest path between two points.
How can I get more than one path? I would like to ...
0
votes
1answer
133 views
Best pathfinding algorithm for traversing a 2D array (grid) touching some mandatory points (JavaScript/Java/C# )
I have a 2D array which I want to traverse starting form one point and ending to another with the following constraints:
Only moves in horizontal and vertical direction are allowed
The path must ...
-2
votes
0answers
85 views
Android Dijktras algorithm example [closed]
I have thoroughly reviewed Dijkstra algorithm and understand it in a pseudo way.
Building this on android ;I am trying to create a simple on screen representation of a building layout a simple birds ...
0
votes
1answer
96 views
How to reverse a graph in linear time?
I know there are two ways to represent my graph: one is using a matrix, and the other one is using a list.
If I use a matrix, I have to flip all the bits in the matrix. Doesn't that take O(V^2) time?
...
0
votes
1answer
62 views
shortest path from multiple Sets
I have to find the shortest path beetween nodes in various sets, where I can use node only once from every set. Every node is connected via distance to every others nodes. There is exception where ...
0
votes
1answer
57 views
Dijkstra algorithm - negative weights only from source
I wonder if we can use Dijkstra algorithm if the graph has some negative-weighted edges, but those start only from source. I can't find any problem with it, but also can't give a solid proof. Any ...
-5
votes
1answer
58 views
Dijkstra; maximum cost [closed]
I would like to use it to find the maximum cost of ways. What and how to rewrite to make it work?
This code finds the min cost, and I don't know, what to do.
I've found it in the internet, but it can ...
-5
votes
0answers
41 views
shortest path from all possible paths of different different lengths, between a couple of nodes [closed]
how to find shortest path from all possible paths of different different lengths, between a couple of nodes in a directed or undirected graph ...like for an example between two nodes if there are ...
1
vote
1answer
442 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
2answers
58 views
How large does a graph need to be to trigger the worst-case complexity of a Fibonacci heap?
I've been trying to trigger the worst-case complexity of a Fibonacci heap by using it with Dijkstra's algorithm but apparently with no luck. I have a second implementation of Dijkstra's using a ...
0
votes
1answer
211 views
Finding shortest path between nodes using Dijkstra's and min heap c++
This is more of a general question. I have a map that maps the name of a city to its node(containing basic info such as country, lat, long, etc.). Each city node has an array of edges pointing to ...
0
votes
0answers
59 views
Error with Dijkstra's algorithm using a min heap
I'm making a graph that stores people nodes in a map by their names. The edges of the graph contain the distance from one person's house to another's. I created a min heap class so that I could ...
-2
votes
1answer
109 views
Matlab dijkstra shortest path: list of nodes
I would be really glad if you could suggest me a Matlab library containing functions that will allow me to list:
1) all paths from a source to dest node on a network identified by its adjacency ...
0
votes
1answer
117 views
Dijkstra's Algorithm issue [repost]
I realized I can't post answers to my own questions because of my low rep or whatever so i deleted my old question and am reasking it. i changed some things and still can't get what i'm looking for.
...
0
votes
0answers
81 views
Min Heap Delete Min out of order?
Sorry, beginner coder here.
I found a min heap implementation online and put it into my Weighted graph.
class Heap : public weightedGraph
{
public: Heap();
~Heap();
void insert(double ...
13
votes
5answers
427 views
Is A* really better than Dijkstra in real world path finding?
I'm developing a path finding program. It is said theoretically that A* is better than Dijkstra. In fact, the latter is a special case of the former. However, when test in real world, I begin to doubt ...
1
vote
4answers
501 views
How to modify dijkstra algorithm to find all possible paths?
I know that could be asked before already but I cannot find it.
I need to modify below dijkstra algorithm which works good for finding
shortest path between 2 nodes but I need to find all possible ...
0
votes
2answers
40 views
Pathfinding: How can I efficiently check if a path is possible?
I am using Dijkstra's algorithm to solve for the ideal path. As part of the program the algorithm is called several thousands of times.
More than half the time the paths are impossible and Dijkstra's ...
8
votes
2answers
328 views
Find shortest path between two articles in english Wikipedia in Python
The question:
Find shortest path between two articles in english Wikipedia. Path between article A and B exist if there are articles C(i) and there is a link in article A that leads to article ...
0
votes
2answers
103 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
1answer
101 views
Small Modification to Particular Implementation of Dijkstra's Algorithm
Over the past few weeks I've been playing with a variety of implementations of Dijkstra's algorithm as part of a personal project (mainly to test performance). I have recently come across this ...
3
votes
2answers
266 views
Dijkstra on Java: Getting Interesting Results Using a Fibonacci Heap vs. PriorityQueue
I recently made an initial comparison of the running time of Dijkstra's algorithm using two data structures, the Java-based PriorityQueue (based on a binary heap, if I'm not mistaken), and a Fibonacci ...
1
vote
0answers
41 views
Shortest Path w/ ability to destroy set number of obstacles
I have a programming assignment to find shortest path from START to GOAL in a "Sector". You can visualize the Sector as a 2D array of Nodes with one node being START and another node being GOAL. All ...
-1
votes
2answers
131 views
Programmatically Speaking, How Would We Evaluate Dijkstra's Algorithm? [closed]
That is, in terms of what should we evaluate it?
As an example, take this Java code snippet of Dijkstra's algorithm:
public void dijkstra(Vertex source) {
{
source.minDistance = 0.;
...
1
vote
1answer
79 views
Dijkstra and Negative Edges
I'm having trouble understanding why Dijkstra's algorithm does not work on acyclic directed graphs with negative edges. As I understand it, Dijkstra does a breadth-first traversal of the graph, ...


