You have to run Prim's algorithm for the problem defined by adjacency matrix: 1 2 3 4 5 6 7 8 9 1 0 10 9 999 999 17 999 999 999 2 10 0 14 4 2 999 999 13 999 3 9 14 0 7 999 999 999 999 999 4 999 4 7 0 999 999 999 5 999 2 999 999 0 6 999 1 999 6 17 999 999 2 6 0 999 7 999 7 999 999 999 8 999 999 0 11 4 و 89 999 13 999 999 1 7 11 0 8 999 999 999 999 999 999 4 8 0 5) We started from the vertex v1, after 4th iteration we have Y= {v1, v3, v4, v6, v2} and arrays: 4th iter. 1 2 3 4 5 6 7 8 9 nearest 1 4 1 3 2 4 4 6 1 distance -1 -1 -1 -1 2 -1 8 7 999 Print out the values stored in the nearest and distance arrays after next iteration of Prim's algorithm. Specify the value of vnear and the next vertex that has to be added to Y Hint: use (copy) the table above to record your answer.
You have to run Prim's algorithm for the problem defined by adjacency matrix: 1 2 3 4 5 6 7 8 9 1 0 10 9 999 999 17 999 999 999 2 10 0 14 4 2 999 999 13 999 3 9 14 0 7 999 999 999 999 999 4 999 4 7 0 999 999 999 5 999 2 999 999 0 6 999 1 999 6 17 999 999 2 6 0 999 7 999 7 999 999 999 8 999 999 0 11 4 و 89 999 13 999 999 1 7 11 0 8 999 999 999 999 999 999 4 8 0 5) We started from the vertex v1, after 4th iteration we have Y= {v1, v3, v4, v6, v2} and arrays: 4th iter. 1 2 3 4 5 6 7 8 9 nearest 1 4 1 3 2 4 4 6 1 distance -1 -1 -1 -1 2 -1 8 7 999 Print out the values stored in the nearest and distance arrays after next iteration of Prim's algorithm. Specify the value of vnear and the next vertex that has to be added to Y Hint: use (copy) the table above to record your answer.
Related questions
Question
please read the question carefully and answer the question carefully
Expert Solution
This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
Step by step
Solved in 3 steps with 20 images