Tagged Questions

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 graph with nonnegative edge path costs, producing a shortest path tree. This algorithm is often used in routing and as a subroutine in other graph algorithms.

learn more… | top users | synonyms

21
votes
7answers
6k views

How does Dijkstra's Algorithm and A-Star compare?

I was looking at what the guys in the Mario AI Competition have been doing and some of them have built some pretty neat Mario bots utilizing the A* (A-Star) Pathing Algorithm. (Video of Mario A* ...
14
votes
7answers
873 views

Teaching programming and formal methods

Here's a sort of odd question. I'm in the process of writing a book on learning to program using formal methods, and I'm going to target it toward people with some programming experience. The idea ...
14
votes
10answers
2k views

Understanding Dijkstra's Mozart programming style

I came across this article about programming styles, seen by Edsger Dijsktra. To quickly paraphrase, the main difference is Mozart, when the analogy is made to programming, fully understood ...
12
votes
3answers
264 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 ...
12
votes
1answer
397 views

What algorithms did Dijkstra develop?

I recently asked a question about one of the Dijkstra’s algorithms (shunting-yard). But almost everyone thought "Dijkstra's algorithm" meant his shortest path algorithm. What other algorithms has ...
12
votes
5answers
1k views

Dijkstra on “Software Engineering” [closed]

Edsger Dijkstra, who could be somewhat abrasive at times (he called "Carl Friedrich Gauss, the Prince of Mathematicians but also somewhat of a coward") said in his essay "On the cruelty of really ...
11
votes
10answers
756 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
7answers
2k views

Bus public transport algorithm

I am working on an offline C# application that can find bus routes. I can extract the timetable/bus/route data. I am searching for the most simple solution that will work with basic data. What ...
9
votes
4answers
164 views

What's the simplest algorithm/solution for a single pair shortest path through a real-weighted undirected graph?

I need to find a shortest path through an undirected graph whose nodes are real (positive and negative) weighted. These weights are like resources which you can gain or loose by entering the node. ...
8
votes
2answers
278 views

Negative edge weight check in boost's dijkstra_shortest_paths

I am using the boost graph library to make a call to dijkstra_shortest_paths. However, I have something special setup in that the weight_map is actually a functor. Hence, everytime the boost library ...
8
votes
5answers
277 views

How to find nearest vector in {0,1,2}^12, over and over again

I'm searching a space of vectors of length 12, with entries 0, 1, 2. For example, one such vector is 001122001122. I have about a thousand good vectors, and about a thousand bad vectors. For each ...
8
votes
7answers
2k views

Efficiently finding the shortest path in large graphs

I'm looking to find a way to in real-time find the shortest path between nodes in a huge graph. It has hundreds of thousands of vertices and millions of edges. I know this question has been asked ...
7
votes
3answers
405 views

Help with my dijkstra's algorithm

I'm currently reviving an old homework assigment, where I'm writing a program that among other functions, involves finding the shortest path in a graph using dijkstra's algorithm. I think I've got ...
7
votes
1answer
319 views

Best Dijkstra papers to explain this quote?

I was enjoying "The Humble Programmer" earlier today and ran across this choice quote: Therefore, for the time being and perhaps forever, the rules of the second kind present themselves as ...
7
votes
2answers
831 views

Dijkstra shortest path algorithm with edge cost

I have a directed, positive weighted graph. Each edge have a cost of use. I have only A money, i want to calculate shortest paths with dijkstra algorithm, but sum of edges costs on route must be less ...
7
votes
3answers
301 views

What are some MUST READ EWDs?

Dijkstra was one of the most prolific computer scientists. He wrote the famous EWDs. It is not feasible to read them all. But I think there are some we all must read. I would love to receive ...
6
votes
4answers
297 views

Fastest implementation for All-pairs shortest paths problem?

I have a weighted graph 30k nodes 160k edges, no negative weights. I would like to compute all the shortest paths from all the nodes to the others. I think I cannot assume any particular heuristics to ...
6
votes
3answers
780 views

Does dijkstras algorithm relax the edges of the shortest path in order?

In "Introduction to algorithms, 3rd edition" exercise 24.3-5 wants an example that this is wrong (not always true). Is that possible? In my mind this is impossible because every edge is relaxed at a ...
6
votes
7answers
8k views

How do you solve the 15-puzzle with A-Star or Dijkstra's Algorithm?

I've read in one of my AI books that popular algorithms (A-Star, Dijkstra) for path-finding in simulation or games is also used to solve the well-known "15-puzzle". Can anyone give me some pointers ...
5
votes
4answers
484 views

Java Maze shortest path 2d int array

I am currently stuck on a project. My aim is to use Dijkstra's algorithm. I understand that I start at point (0,0) I look at the two nodes next to the start point and then I move to the smallest ...
5
votes
3answers
132 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
5answers
459 views

Using Dijkstra's algorithm to find a path that can carry the most weight

I have a graph, with X nodes and Y edges. Weighted edges. The point is to start at one node, and stop at another node which is the last location. Now here comes the problem: Visualize the problem. ...
5
votes
2answers
360 views

Performance of Dijkstra's algorithm implementation

Below is an implementation of Dijkstra's algorithm I wrote from the pseudocode in the Wikipedia article. For a graph with about 40 000 nodes and 80 000 edges, it takes 3 or 4 minutes to run. Is that ...
5
votes
3answers
741 views

Suggestions of the easiest algorithms for some Graph operations

The deadline for this project is closing in very quickly and I don't have much time to deal with what it's left. So, instead of looking for the best (and probably more complicated/time consuming) ...
5
votes
2answers
10k views

Dijkstra algorithm for 2D array in Java

Hiya guys!! This is my first post, and this is for a school project; I'm running into a huge amount of trouble, and I can't seem to find a understandable solution. a b c d e z a - 2 3 - - - b 2 ...
5
votes
1answer
818 views

Correct formulation of the A* algorithm

I'm looking at definitions of the A* path-finding algorithm, and it seems to be defined somewhat differently in different places. The difference is in the action performed when going through the ...
4
votes
4answers
319 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
264 views

What data structures to use for Dijkstra's algorithm in Erlang?

Disclaimer: The author is a newbie in Erlang. Imagine, we have a graph consisting of 1M nodes, and each node has 0-4 neighbours (the edges are emanating from each node to those neighbours, so the ...
4
votes
1answer
181 views

who knows Sedgewick-Vitter algorithm?

I have to realize Dijkstra and Sedgewick-Vitter algorithms without using Fibonacci heap. Information about Dijkstra full internet, but I couldn't find pseudo code or examples of Sedgewick-Vitter ...
4
votes
3answers
1k views

Dijkstra's algorithm with negative weights

Can we use Dijkstra's algorithm with negative weights? STOP! Before you think "lol nub you can just endlessly hop between two points and get an infinitely cheap path", I'm more thinking of one-way ...
4
votes
3answers
2k views

Dijkstra vs. Floyd-Warshall: Finding optimal route on all node pairs

I am reading up on Dijkstra's algorithm and the Floyd-Warshall algorithm. I understand that Dijkstra's finds the optimal route from one node to all other nodes and Floyd-Warshall finds the optimal ...
4
votes
4answers
2k views

Find cycle of shortest length in a directed graph with positive weights

I was asked this question in an interview but i couldnt come up with any decent solution. So, i told them the naive approach of finding all the cycles then picking the cycle with the least length. ...
4
votes
2answers
1k views

Why use Dijkstra's if Breadth First Search can do the same and fast?

Both can be used to find the shortest path from single source. BFS runs in O(E+V) while Dijkstra's runs in O((V+E)*log(V)) But I've seen Dijkstra used a lot like in routing protocols
4
votes
2answers
224 views

About Dijkstra's paper

I am reading Coders at Work. I came across this paragraph in Donald Knuth's interview. Seibel: It seems a lot of the people I’ve talked to had direct access to a machine when they were starting ...
4
votes
2answers
301 views

A* implemented in C

Where can I find an A* implementation in C? I was looking around but it seems my google-fu is not strong enough. I've started writing my own implementation, but then I remembered Stack Overflow and I ...
3
votes
2answers
94 views

Dijkstra Algorithm property

Dijkstra(G,w,s) { ISS(G,s); let S be an empty set let Q be a priority queue, initialized with V[G] while Q is not Empty: u<-extractMin(Q); add u to S for each vertex v ...
3
votes
3answers
77 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
2answers
201 views

Dijkstra for longest path in a DAG

I am trying to find out if it is possible to use Dijkstra's algorithm to find the longest path in a directed acyclic path. I know that it is not possible to find the longest path with Dijkstra in a ...
3
votes
1answer
43 views

GPS finding neighboring roads

So I'm building a GPS application. I have a collection of Road objects each containing a start and end point (plus other in-between points where the road curves). I've implemented dijkstra's algorithm ...
3
votes
1answer
186 views

Boost::graph Dijkstra : initially populating the queue

I'm using boost::graph and its Dijkstra implementation. I want to compute THE shortest path from a set of vertices to another set of vertices. I do not want to compute all the possible paths between ...
3
votes
4answers
240 views

Where can i get a Java implementation of Dijkstra's algorithm?

I am looking for a generic Java implementation of Dijkstra's algorithm. I've tried coding this up on my own, but I keep running into problems. If it helps, I know for a fact that the graph is always ...
3
votes
4answers
328 views

Which datatype to use as queue in Dijkstra's algorithm?

I'm trying to implement Dijkstra's algorithm in Java (self-study). I use the pseudo-code provided by Wikipedia (link). Now near the end of the algorithm, I should decrease-key v in Q;. I guess i ...
3
votes
0answers
123 views

Dijkstra's example of an ambiguous program [closed]

Salutations. Dijkstra wrote that even a few lines of seemingly simple code could be hopelessly ambiguous. In at least one work, which I can't find now to save my life, he gave a little example ...
3
votes
2answers
177 views

Dijkstra - Nearest Neighbour Determination

I have come unstuck in my determination of nearest neighbours in Dijkstra's algorithm. I am getting strange results as follows Firstly this is the contents of my network file, representing the ...
3
votes
1answer
599 views

Modified shortest path using Dijkstra's or Bellman–Ford's algorithm

How can we use Dijkstra's or Bellman–Ford's algorithm to find shortest path in a graph whose some of edges are affected if we go specific vertices. Such that, the affected edge's length will be more ...
3
votes
1answer
626 views

Find shortest combination of words that contain every character from a specified set

I got an array (let's call it a1) of words (like "dog", "fish", "run", "programming" anything) that's really huge. I can combine any of the words out of a1 with any other of the words (e.g. you could ...
3
votes
3answers
1k views

Are there faster algorithms than Dijkstra?

Given a directed, connected graph with only positive edge weights, are there faster algorithms for finding the shortest path between two vertices, than Dijkstra using a fibonacci heap? Wikipedia ...
2
votes
1answer
77 views

What is a 2-way heap?

I'm reading a book about AI and currently learning about pathfinding(currently doing the Dijkstra algorithm) In the sample code he's using something he calls an IndexedPriorityQueue implemented as a ...
2
votes
1answer
193 views

using Dijkstra algorithm to find shortest path in an adjacency matrix

I have a homework assignment where I'm supposed to find the cheapest airfares between two cities, taking into account layovers. We are required to use an adjacency matrix along with Dijkstra's ...
2
votes
1answer
87 views

Find the minimize maximum weights in weighted graph using dynamic programming

I'm looking for an algorithm that finds the path from two vertices say s to t, in a graph that has exactly k edges if paths exist. And if multiple paths were found, the one with the minimum maximum ...

1 2 3 4