Skip to main content
Email Password   helpLost your password?

Introduction

First of all I must say that I am glad that I can help CodeProject. I tried, and used code from this site and I never took the time to send some of my code. So, the part that it is missing from this site is the Algorithms part, which is important in the programming filed. Let's get into the problem now. The Djkstra algorithm it gives you a headache from the programming point of view. In one step it finds the shortest path to every node in the graph. I will go into the graph background (basics) and then I will present the implementation of this algorithm. This example has also some advanced programming techniques and technologies. I used an ActiveX control (that it is actually the Dijkstra solver) and a container application that use the functions. Also, the lists are made using STL

How to use it

First compile the AnimAlg project and then run the Algorithms project. That's all!

Background (graph theory)

Djikstra's algorithm (named after its discover, E.W. Dijkstra) solves the problem of finding the shortest path from a point in a graph (the source) to a destination. It turns out that one can find the shortest paths from a given source to all points in a graph in the same time, hence this problem is sometimes called the single-source shortest paths problem. The somewhat unexpected result that all the paths can be found as easily as one further demonstrates the value of reading the literature on algorithms!

This problem is related to the spanning tree one. The graph representing all the paths from one vertex to all the others must be a spanning tree - it must include all vertices. There will also be no cycles as a cycle would define more than one path from the selected vertex to at least one other vertex. For a graph,

G = (V,E) where V is a set of vertices and E is a set of edges. Dijkstra's algorithm keeps two sets of vertices: S the set of vertices whose shortest paths from the source have already been determined and V-S the remaining vertices. The other data structures needed are: d array of best estimates of shortest path to each vertex pi an array of predecessors for each vertex The basic mode of operation is: Initialize d and pi, Set S to empty, While there are still vertices in V-S, Sort the vertices in V-S according to the current best estimate of their distance from the source, Add u, the closest vertex in V-S, to S, Relax all the vertices still in V-S connected to u Relaxation The relaxation process updates the costs of all the vertices, v, connected to a vertex, u, if we could improve the best estimate of the shortest path to v by including (u,v) in the path to v.

Using the code

The container application only use the ActiveX Control. First, must include the control in a Dialog or a FormView, add a variable to it and then use the following code:
void CAlgorithmsView::OnAddNode() 
{
    m_Dijkstra.StartAddNodes();
}

void CAlgorithmsView::OnAddEdge() 
{
    m_Dijkstra.StartAddEdges();
}

void CAlgorithmsView::OnShortestPath() 
{
    CShorthestPath dlg;
    if(dlg.DoModal()==IDOK)    
/* dialog to take 2 longs which means the path*/
    {
        m_Dijkstra.ShortestPath(dlg.m_node1, dlg.m_node2);
    }
}

I will not go too much into the code, I tried to explain there using comments.

Basically, it respects the Graph Theory explained above and the Dijkstra's pseudocode.

Graph Implementation

class CGraph 
{
    public:
    long GetNrNodes();
    CGraph();
    virtual ~CGraph();
    VTYPE_NODE m_nodes; // array of nodes

    VTYPE_EDGE m_edges; // array of edges

    VTYPE_NODE_P d; // array of longs that contain 

          // the shortest path at every step

    VTYPE_NODE_P pi; // array of longs that contain 

          // the predecessor of each node for the shortest path

};
class CNode
{
    public:
    CNode Copy();
    double m_cost; // not used yet

    long m_NodeNr; // node number

    POINT m_p; // graphical point for that node

    CNode();
    virtual ~CNode();
};
class CEdge 
{
    public:
    bool m_red; // used to draw the result 

       // (if an edge it is a part of the shortest path it is drawn in red)

    double m_cost; // the cost of an edge (picked randomly between 0-9)

    long m_secondNode; // the second node number

    long m_firstNode; // the first node number

    POINT m_secondPct; // graphical elements for drawing the edges

    POINT m_firstPct;
    CEdge();
    virtual ~CEdge();
};
// the graph is oriented from the first node to the second node

The Dijkstra's Algorithm (Implementation)

// The Dijkstra's algorithm

STDMETHODIMP CDijkstra::ShortestPath(long node1, long node2)
{
    ReleaseGraph();
    // init d and pi

    InitializeSource(g, g.m_nodes[node1-1]);
    // Set S empty

    VTYPE_NODE S;
    // Put nodes in Q

    VTYPE_NODE Q;
    VTYPE_NODE::iterator kl;
    for(kl=g.m_nodes.begin(); kl<g.m_nodes.end(); kl++)
    {
        CNode node = (*kl).Copy();
        Q.push_back(node);
    }
    // Algorithm

    while(Q.size())
    {
        CNode nod = ExtractMin(Q); // the minim value for 

              // the shortest path up to this step

        S.push_back(nod);
        // each vertex v which is a neighbour of u

        VTYPE_NODE::iterator kl;
        for(kl=g.m_nodes.begin(); kl<g.m_nodes.end(); kl++)
        {
            if(ExistEdge(nod, (*kl)))
            {
                bool gasit = false;
                VTYPE_NODE::iterator kll;
                for(kll=Q.begin(); kll<Q.end(); kll++)
                {
                    if((*kll).m_NodeNr == (*kl).m_NodeNr)
                    gasit = true;
                }
                if(gasit)
                    Relax(nod, (*kl), GetEdgeVal(nod, (*kl)));
            }
        }
    }
    RefreshDone(node1, node2);
    return S_OK;
}

Links

If you want to see how the algorithm works step by step see the link: http://ciips.ee.uwa.edu.au/~morris/Year2/PLDS210/dij-op.html

You must Sign In to use this message board.
 
 
Per page   
 FirstPrevNext
Generalplease help me answering..... Pin
annei
23:29 8 Oct '09  
Questionhelp me plsss,,,, Pin
sumario
21:21 25 Aug '08  
GeneralImplementing a Timer Functionality Pin
David James
6:16 16 Mar '08  
QuestionQuestion about Dijkstra Algorithm Pin
wongyum
17:11 11 Mar '08  
GeneralHow to create Topology for road networks? Pin
dgpdgp
6:28 7 Aug '07  
GeneralHelp for Dijkstra's graph algo in C# Pin
Asshish
19:43 4 Jul '07  
GeneralQuestion Pin
averys
4:22 24 May '07  
GeneralVB version of Dijkstra's Algorithm Pin
mergul
14:00 21 Apr '06  
AnswerRe: VB version of Dijkstra's Algorithm Pin
abhijitkolas
19:57 8 Apr '07  
Generalcrash Pin
kahnpost@freenet.de
11:38 30 Jul '05  
Generale bun Pin
euacela
2:46 15 Sep '04  
GeneralNeeded your kind attention Pin
Hammad Raza Kazmi
22:57 3 Aug '04  
GeneralGot Some Problems! Help Please! Pin
RinoMerc
13:02 4 Jun '04  
GeneralInterestingly, you can often do *much* better than Dijkstra! Pin
Don Clugston
14:35 4 Jan '04  
GeneralRe: Interestingly, you can often do *much* better than Dijkstra! Pin
kozlowski
15:15 22 Jan '04  
GeneralRe: Interestingly, you can often do *much* better than Dijkstra! Pin
Don Clugston
19:17 28 Jan '04  
GeneralRe: Interestingly, you can often do *much* better than Dijkstra! Pin
kackermann
17:37 30 Jul '06  
GeneralStop condition Pin
kozlowski
13:10 4 Jan '04  
GeneralRe: Stop condition Pin
lgcip
4:16 6 Jan '04  
GeneralRe: Stop condition Pin
kozlowski
14:49 6 Jan '04  
GeneralRe: Stop condition Pin
lgcip
21:28 6 Jan '04  
GeneralJust a comment Pin
Anonymous
19:41 31 Dec '03  
Generalhelp! Pin
Mr. Kevork
13:40 30 Dec '03  
GeneralRe: help! Pin
lgcip
0:41 3 Jan '04  
GeneralApplication Usage Pin
Peter Ritchie
4:45 30 Dec '03  


Last Updated 23 Dec 2003 | Advertise | Privacy | Terms of Use | Copyright © CodeProject, 1999-2009