About Me

My photo
Vijayapur, Karnataka, India
I am interested in Teaching.

Wednesday 23 August 2023

Module-4 Laboratory Component M4/L1: Java programs to solve All-Pairs Shortest Paths problem using Floyd's algorithm.

 

Import java.util.Scanner;

 

public class floyd {

 

void flyd(int[][] w,intn)

 

{

int i,j,k;

for(k=1;k<=n;k++)

for(i=1;i<=n;i++)

for(j=1;j<=n;j++)

w[i][j]=Math.min(w[i][j], w[i][k]+w[k][j]);

}

 

public static void main(String[] args) {

      int a[][]=new int[10][10];

int n,i,j;

System.out.println("enter the number of vertices"); Scanner sc=new Scanner(System.in); n=sc.nextInt();

System.out.println("Enter the weighted matrix"); for(i=1;i<=n;i++)

for(j=1;j<=n;j++)

a[i][j]=sc.nextInt();

floyd f=new floyd();

f.flyd(a, n);

System.out.println("The shortest path matrix is");

for(i=1;i<=n;i++)

{

for(j=1;j<=n;j++)

{

System.out.print(a[i][j]+" ");

}

System.out.println();

}

sc.close();

 

}

 

}

 

Output:

 

enter the number of vertices

 

4

Enter the weighted matrix

0 99 3 99

2 0 99 99

99 7 0 1

6 99 99 0

The shortest path matrix is

0 10 3 4

2 0 5 6

7 7 0 1

6 16 9 0

No comments:

GCD of two numbers and its application...

The greatest common divisor (gcd) of two numbers is the largest positive integer that divides both numbers without leaving a remainder. The ...