Please solve the following using Java. Please also provide some explanations because I am new to Graph Traversal. Canadian Computing Competition: 2010 Stage 1, Junior #5 Below is an 8×88×8 chessboard...


Please solve the following using Java. Please also provide some explanations because I am new to Graph Traversal.


Canadian Computing Competition: 2010 Stage 1, Junior #5

Below is an 8×88×8 chessboard on which we will designate square locations using the ordered pairs as indicated. For example, notice that piece AA is at position (2,2)(2,2) and piece BB is at position (4,3)(4,3).








































































































8
7
6
5
4
3B
2A
1
12345678

A knight is a special game piece that can leap over other pieces, moving in the "L" pattern. Specifically, in the diagram below, KK represents the knight's starting position and the numbers 1 through 8 represent possible places the knight may move to.








































































































8
7
681
572
4Knight
363
254
1
12345678

Your program will read the starting location of the knight and output the smallest number of jumps or moves needed to arrive at a location specified in the second input.


Input Specification


Your program will read four integers, where each integer is in the range 1…81…8. The first two integers represent the starting position of the knight. The second two integers represent the final position of the knight.


Output Specification


Your program should output the minimum (non-negative integer) number of moves required to move the knight from the starting position to the final position. Note that the knight is not allowed to move off the board during the sequence of moves.


Sample Input 1


2 1 3 3


Output for Sample Input 1


1


Sample Input 2


4 2 7 5


Output for Sample Input 2


2



Jun 05, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here