-2
votes
1answer
136 views
dijktra’s algorithm coding [closed]
//dijktra's algorithm
#include<iostream.h>
#include<conio.h>
#include<stdio.h>
#define infi 999
class queue
{
private:
int q[100];
int front, rear;
protected …
2
votes
4answers
105 views
Longest circle in graphs
Hi folks,
I want to solve the following problem:
I have a DAG which contains cities and jobs between them that needs to be done. The jobs are for trucks which can load a definied …
0
votes
1answer
122 views
Dijkstra’s Bankers Algorithm
Could somebody please provide a step-through approach to solving the following problem using the Banker's Algorithm? How do I determine whether a "safe-state" exists? What is meant …
1
vote
4answers
405 views
Fastest Dijkstra algorithm for j2ME
Hi All,
Can anybody help me to make j2ME implementation of Dijkstra algorithm faster ? I have two loops, one inside another. Like this
while(for each item in Q)
{
//...do som …
3
votes
3answers
137 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 h …
0
votes
3answers
74 views
Shortest path with a fixed number of edges
We were discussing this problem in class, and were unable to come up with a solution I found satisfying.
The problem:
Find the shortest path through a graph in efficient time, wit …
4
votes
7answers
2k 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 giv …
5
votes
4answers
449 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.
…
1
vote
2answers
143 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 …
1
vote
2answers
53 views
Custom Map With Directions
I want to make a map program that gives directions around a campus (residence halls, football field, etc), and within buildings (to offices, cafeteria, etc). Is there anything exis …
4
votes
2answers
94 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 lo …
2
votes
4answers
399 views
Dijkstra algorithm for iPhone
Hello all!
It is possible to easily use the GPS functionality in the iPhone since sdk 3.0, but it is explicitly forbidden to use Google's Maps.
This has two implications, I think:
…
9
votes
6answers
310 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 exp …
2
votes
1answer
2k 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
…
7
votes
5answers
293 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 cr …
