views:

117

answers:

2

This Code is a code i built from the algorithm design manual book but i can't make it compile cause i've got little experience with pointers i think that's the main reason i think i can't compile it :

And if someone can change a little bit in the djikstra to make it through heap with the current configuration. PLEASE HELP.

#include<iostream>
#include<stdio.h>
#include<stdlib.h>
using namespace std;
const int MAXV=1000;
const int MAXINT=99999;

typedef struct{
    int y;
    int weight;
    struct edgenode *next;
}edgenode;
typedef struct{
    edgenode *edges[MAXV+1];
    int degree[MAXV+1];
    int nvertices;
    int nedges;
    bool directed;
}graph;

void add_edge(graph *g,int x,int y,int weight,bool directed);

void read_graph(graph *g,bool directed){
    int x,y,weight,m;
    g->nvertices=0;
    g->nedges=0;
    g->directed=directed;
    for(int i=1;i<MAXV;++i) g->degree[i]=0;
    for(int i=1;i<MAXV;++i) g->edges[i]=NULL;
    scanf("%d %d",&(g->nvertices),&m);
    for(int i=1;i<=m;++i){
        scanf("%d %d %d",&x,&y,&weight);
        add_edge(g,x,y,weight,directed);
    }
}

void add_edge(graph *g,int x,int y,int weight,bool directed){
    edgenode *p;
    p=malloc(sizeof(edgenode));
    p->weight=weight;
    p->y=y;
    p->next=g->edges[x];

    g->edges[x]=p;
    g->degree[x]++;
    if(directed==false) add_edge(g,y,x,weight,true);
    else g->nedges++;
}

int dijkstra(graph *g,int start,int end){
    edgenode *p;
    bool intree[MAXV+1];
    int distance[MAXV+1];
    for(int i=1;i<=g->nvertices;++i){
        intree[i]=false;
        distance[i]=MAXINT;
    }
    distance[start]=0;
    int v=start;
    while(intree[v]==false){
        intree[v]=true;
        p=g->edges[v];
        while(p!=NULL){
            int cand=p->y;
            int weight=p->weight;
            if(distance[cand] > distance[v]+weight) distance[cand]=distance[v]+weight;
            p=p->next;
        }
        v=1;
        int dist=MAXINT;
        for(int i=1;i<=g->nvertices;++i)
            if((intree[i]==false) && (dist > distance[i])){
                dist=distance[i];
                v=i;
            }
    }
    return distance[end];
}

int main(){
    graph g;
    read_graph(&g,false);
    int x=1,y,shortest;
    while(x!=0){
        scanf("%d %d",&x,&y);
        shortest=dijkstra(&g,x,y);
        printf("The shortest path from %d to %d is %d",x,y,shortest);
    }
    return 0;
}
+3  A: 

Change the definition of the struct, and it would compile.

struct edgenode_tag 
{
   int y;
   int weight;
   struct edgenode_tag *next;
};
typedef edgenode_tag edgenode; 

While this will solve your problem, don't trust my answer below until someone better than me comments on it.


What was wrong in your code ?

You are using the typedef-ed type before the compiler knows about that type. Instead, you need to use the structure_tag to define the member pointer of type itself.

typedef struct 
{
  ...
  my_struct* pS;
  ...        
} my_struct;  // at this point compiler will know about *my_struct* type
              // Hence, you can not use that name until after this line.

              // To define the member pointer of type itself you need to 
              // to use the struct_tag, as I did in your example.
              // where, struct_tag is *edgenode_tag*

EDIT:

Also, malloc returns void*, which you need to cast to the type you are assigning it to. So, inside function add_edges, make this correction (please read more about this in book, it is important to understand this):

                  p = (edgenode*)malloc(sizeof(edgenode));
Gollum
You mentioned the first problem but in fact there is another problem in the add_edge function which is preventing the code from compiling and i don't know what's it about ??(maybe about memory allocation)
magiix
@magiix, see the updated answer.
Gollum
@Gollum Thank you so much u saved my day :D
magiix
Actually Gollum i changed the struct of the edge to make itstruct edge{int y;int weight;int distance;edge *next;};and tried to make a dijkstra through heap but i really can't manage it, this is my dijkstra code would you update it?
magiix
+1  A: 

typedef struct

{

int y;

int weight;

struct edgenode *next;

} edgenode;

Here you are using a typedef struct without defining this and then you are using edgenode in your struct defination before defining edgenode.


So you should change it to:

typedef struct _edgenode

{

int y;

int weight;

struct _edgenode *next;

} edgenode;

Kumar Alok
@kumar, if you are writing a code then indenting it by 4 space character, will generate a code block for you :-).
Gollum
@ Gollum, Thanks buddy. I didn't know how to do that. Thanks. :)
Kumar Alok
You mentioned the first problem but in fact there is another problem in the add_edge function which is preventing the code from compiling and i don't know what's it about ??(maybe about memory allocation)
magiix