-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdag.c
92 lines (77 loc) · 1.3 KB
/
dag.c
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
#include<stdio.h>
int A[10][10],V,i,j,S[10],D[10],DM[10][10];
void topoSort();
void main()
{
int count=0,s;
printf("Enter the number of vertices:\n");
scanf("%d",&V);
printf("Enter the adjacency matrix (999 for INF)\n");
for(i=0;i<V;i++)
{ D[i]=999;
for(j=0;j<V;j++)
scanf("%d",&A[i][j]);
}
topoSort();
printf("Topological order:\n");
for(i=0;i<V;i++)
printf("%d\t",S[i]);
printf("\n");
printf("Enter the source:\n");
scanf("%d",&s);
D[s]=0;
for(i=0;i<V;i++)
{
if(S[i]==s)
break;
count++;
}
while(count<V)
{
for(j=0;j<V;j++)
{
if(A[S[count]][j]!=999&&D[j]>A[S[count]][j]+D[S[count]])
D[j]=A[S[count]][j]+D[S[count]];
DM[S[count]][j]=D[j];
}
count++;
}
printf("Distance matrix:\n");
for(i=0;i<V;i++)
{
for(j=0;j<V;j++)
printf("%d\t",DM[i][j]);
printf("\n");
}
printf("Distances:\n");
for(i=0;i<V;i++)
printf("%d\t",D[i]);
printf("\n");
}
void topoSort()
{
int count=0,in_deg[10];
for(j=0;j<V;j++)
{
in_deg[j]=0;
for(i=0;i<V;i++)
{
if(A[i][j]!=0&&A[i][j]<999)
in_deg[j]++;
}
}
while(count<V)
{
for(i=0;i<V;i++)
{
if(in_deg[i]==0)
{
S[count++]=i;
in_deg[i]--;
for(j=0;j<V;j++)
if(A[i][j]!=0&&A[i][j]!=999)
in_deg[j]--;
}
}
}
}