我无法以正确的顺序创建相邻列表。我认为 CreateAdjList(void) 方法存在一些问题。我没有主意了。请给我一些提示。基本上我有图并在连接的边上创建邻接列表。
#include <stdio.h>
#include <stdlib.h>
#define maxV 100
typedef struct graphnode{
int vertex;
struct graphnode *next;
}Node;
Node **node;
Node **nodeT;
FILE *fp;
void initial(int nv);
void AdjList(void);
void PrintAdjList(int nv);
int main()
{
int nv;
fp= fopen("input.txt","r");
fscanf(fp,"%d",&nv);
initial(nv);
CreateAdjList();
PrintAdjList(nv);
return 0;
}
void initial(int nv)
{
int i;
node = new Node *[maxV];
for(i=1;i<=nv;i++){
node[i] = (Node *)malloc(sizeof(Node));
node[i]->next=NULL;
}
}
//CREATE ADJACENCY LIST -
void CreateAdjList(void)
{
int v1,v2;
Node *ptr;
while(fscanf(fp,"%d%d",&v1,&v2)!=EOF){
ptr = (Node *)malloc(sizeof(Node));
ptr->vertex = v2;
ptr->next = node[v1]->next; //Problem could be here
node[v1]->next = ptr;
}
fclose(fp);
}
//PRINT LIST
void PrintAdjList(int nv)
{
int i;
Node *ptr;
for(i=1; i<=nv; i++){
ptr = node[i]->next;
printf(" node[%2d] ",i);
while(ptr != NULL){
printf(" -->%2d", ptr->vertex);
ptr=ptr->next;
}
printf("\n");
}
printf("\n");
}
实际程序输出 - 错误顺序。我以尊敬的方式附加了输出列表。
输入:
8
1 2
2 3
2 5
2 6
3 4
3 7
4 3
4 8
5 1
5 6
6 7
7 6
7 8
8 8
0 0
Expected Output:
Adjacency list represenation:
1: 2
2: 3 5 6
3: 4 7
4: 3 8
5: 1 6
6: 7
7: 6 8
8: 8
我的实际输出显示顺序错误。如果您查看节点,正确的顺序应该是 2 ->3->6->5
node[ 1] --> 2
node[ 2] --> 6 --> 5 --> 3
node[ 3] --> 7 --> 4
node[ 4] --> 8 --> 3
node[ 5] --> 6 --> 1
node[ 6] --> 7
node[ 7] --> 8 --> 6
node[ 8] --> 8