-
Notifications
You must be signed in to change notification settings - Fork 0
/
图的存储四输入邻接矩阵并查询.cpp
64 lines (62 loc) · 1.44 KB
/
图的存储四输入邻接矩阵并查询.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#include<stdio.h>
#include<stdlib.h>
//使用邻接链表存储
//使用数组会超时
struct node{
int data;
struct node *next;
}*a[5000];
//数组的下标代表了每一个结点
int main(){
int i,j,m,n,query,flag;
struct node*p;
while(~scanf("%d",&n)){//结点的个数
//初始化表头数组
for(i=0;i<n;i++){
a[i]=NULL;
}
//读入矩阵数据
for(i=0;i<n;i++){
for(j=0;j<n;j++){
scanf("%d",&m);
//只有矩阵数据为才进行处理,否则不进行处理,让其为null
if(m==1){
if(a[i]==NULL) {//如果数组本身还没有存储指向的弧头,就直接存入数组
p=(struct node*)malloc(sizeof(struct node));
p->data=1;//z=指针成员访问使用箭头**出错过
p->next=NULL;
a[i]=p;
}else{ //否则,另劈空间,建立邻接链表
p=(struct node*)malloc(sizeof(struct node));
p->data=j;//不是一而是j,是弧头*****出过错
p->next=a[i]->next;
a[i]->next=p;
}
}
}
}
scanf("%d",&query); //读入查询次数
for(i=0;i<query;i++){
scanf("%d%d",&m,&n);
flag=0;
if(a[i]==NULL){//不存在指定的1弧头
flag=0;
}else{
p=a[i];//***************出过错,取了地址
while(p){
if(p->data==n){
flag=1;
break;
}else{
p=p->next;
}
}
}
if(flag==0){
printf("No\n");
}else{
printf("Yes\n");
}
}
}
}