gpt4 book ai didi

创建邻接列表

转载 作者:太空宇宙 更新时间:2023-11-04 03:03:41 25 4
gpt4 key购买 nike

我无法按正确顺序创建相邻列表。我认为 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");

}

ACTUAL PROGRAM OUTPUT - WRONG ORDER . I attached output list in printed in revere way.

输入:

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

My actual output is displayed wrong order. If you look at node the correct order should be 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

最佳答案

对此有所了解,因为我已经有一段时间没有完成 C :)

您所追求的是更多类似下面的内容 - 请注意,有几个错误,我看不出它是如何工作的。由于文件末尾有 '0 0',并且您在循环中使用 1->nv,因此永远不会有 node[0] 元素,因此总是会失败。

在我的示例中,我保持数组稀疏(仅分配实际存在的节点),同时满足其他条件。我也不关心它们的顺序,所以输入文件可能是无序的。另请注意,如果文件数据具有稀疏数据(即第一个数字是 10,并且缺少“9 x”之类的任何内容),则可能需要更新打印方法。

void initial(int nv)
{
node = (Node **)malloc(maxV * sizeof(Node *));
}

//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;

if (node[v1]==NULL) {
node[v1] = (Node *)malloc(sizeof(Node));
node[v1]->vertex = v1;
node[v1]->next = NULL;
}

Node *next = node[v1];
while (next->next!=NULL)
next = next->next;

next->next = ptr;

//ptr->next = &(*(node[v1])->next); //Problem could be here
//node[v1]->next = ptr;
}

fclose(fp);
}

关于创建邻接列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8352212/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com