Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Java. Use dijkstra's shortest path algorithm with priority queue, lists, or hashmaps. Find the shortest path that starting with 55 and ending with 99 .
Java. Use dijkstra's shortest path algorithm with priority queue, lists, or hashmaps.
Find the shortest path that starting with 55 and ending with 99. Starting and ending numbers are fixed number. There are at least one way in between 55 to 99, not directly from 55 to 99. Not a way from 99 to 55 neither. First input should be the number of input.
Example input:
5
34 88
55 34
88 55
88 99
99 88
output:
3
Another example:
8
44 55
55 33
33 44
44 88
44 99
99 44
99 33
55 88
output:
3
Another example:
4
1 55
55 1
99 55
1 99
output:
2
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started