2

此代码是我从算法设计手册书中构建的代码,但我无法编译它,因为我对指针的经验很少我认为这是我认为我无法编译它的主要原因:

如果有人可以在 djikstra 中进行一些更改,以使其通过当前配置的堆。

#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;
}
4

2 回答 2

3

更改结构的定义,它会编译。

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

虽然这将解决您的问题,但在有人比我更好的评论之前不要相信我的回答。


你的代码有什么问题?

在编译器知道该类型之前,正在使用typedef -ed类型。相反,您需要使用 structure_tag 来定义类型本身的成员指针。

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*

编辑:

此外,malloc 返回 *void**,您需要将其转换为您分配给它的类型。所以,在函数add_edges中,做这个更正(请在书中阅读更多关于这个的内容,理解这一点很重要):

                  p = (edgenode*)malloc(sizeof(edgenode));
于 2010-06-28T22:48:40.957 回答
1

类型定义结构

{

整数y;

重量;

结构边缘节点*下一个;

} 边缘节点;

在这里,您使用 typedef 结构而不定义它,然后在定义 edgenode 之前在结构定义中使用 edgenode。


所以你应该把它改成:

typedef struct _edgenode

{

整数y;

重量;

结构 _edgenode *next;

} 边缘节点;

于 2010-06-29T06:57:18.183 回答