Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Please modify my Java code. Please modify my Dijkstras? algorithm code to do the following: right now my algorithm accepts one source node and outputs

Please modify my Java code.

Please modify my Dijkstras? algorithm code to do the following:

right now my algorithm accepts one source node and outputs the shortest path to all the others. Please make the few changes described below. The output it wants is something I am struggling with. In Java please.

Thank You

image text in transcribed

import java.util.*; import java.lang.*; import java.io.*;

class Dijkstra { static int numberOfVerticies = 0; int getMinDistance(int distance[], Boolean isSet[], int numberOfVertices) { // Initialize value with maximum integer int min = Integer.MAX_VALUE; // take position as -1 int position = -1; for (int v = 0; v

void shortestPath(int adjacencyMatrix[][], int source, int numberOfVertices) { // the output array which holds the distance of all the vertices from source int distance[] = new int[numberOfVertices]; // isSet[i] will true if vertex i is included in shortest // path tree or shortest distance from source to i is finalized Boolean isSet[] = new Boolean[numberOfVertices]; // Set all distances as max integer value and isSet[] as false for (int i = 0; i destination = Distance"); for (int i = 0; i " + i + " : " + distance[i]); }

// Main public static void main(String[] args) { System.out.print(" Enter number of vertices : "); Scanner scanner = new Scanner(System.in); numberOfVerticies=scanner.nextInt(); System.out.println("Enter input:"); int adjacencyMatrix[][] = new int[numberOfVerticies][numberOfVerticies]; for (int i = 0; i

System.out.print(" Enter source node: "); int source = scanner.nextInt();

dijkstra.shortestPath(adjacencyMatrix, source, numberOfVerticies); } }

outputs the corresponding routing matrix. The routing matrix will be written both to the screen and to an output file. Use Dijkstra's algorithm to find the shortest cost and path between nodes The program runs from the command line with two optional command line arguments. Use the following command line options to indicate the presence ofa command line argument: -i (for input file name) and -o (for output file name). If no command line arguments are present, the program uses "xy_input.txt and xy-output.txt" as default input and output file names respectively. See examples below: java xy_rmatrix java xy rmatrix -o xy rmatrixo.txt java xy _rmatrix -i xy rmatrixi.txt-o xy-rmatrixo.txt Sample Input/Output: Edges are bi-directional A E A D 2 C D 2 C E 2 D E 7 Routing matrix D.4 C,4 A,1 D,4 D I A2 C,6 B,4 ?? C,6 D,2 D.2 C,4 D,6 C,6 ?,2 C,4 C,2 C,2

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

More Books

Students also viewed these Databases questions

Question

2. The purpose of the acquisition of the information.

Answered: 1 week ago

Question

Describe the Indian constitution and political system.

Answered: 1 week ago

Question

Explain in detail the developing and developed economy of India

Answered: 1 week ago

Question

Problem: Evaluate the integral: I = X 52+7 - 1)(x+2) dx

Answered: 1 week ago

Question

What is gravity?

Answered: 1 week ago

Question

What is the Big Bang Theory?

Answered: 1 week ago