For MST solution with Prim’s as discussed in class: Usi…
For MST solution with Prim’s as discussed in class: Using weighted edge data like this: edges = new int{ {0, 1, 5}, {0, 2, 7}, {0, 5, 2}, {1, 0, 5}, {1, 2, 3}, {1, 3, 6}, {2, 0, 7}, {2, 1, 3}, {2, 3, 4}, {2, 4, 5}, {2, 5, 6}, {3, 1, 6}, {3, 2, 4}, {3, 4, 4}, {4, 2, 5}, {4, 3, 4}, {4, 5, 5}, {5, 0, 2}, {5, 2, 6}, {5, 4, 5} }; There are 6 vertices. Using vertex 0 as the root, what are the contents of the cost array (at statement 142) for the MST? What are the contents of the parent array (at statement 145) for the MST? Separate the content with a single space. What is the total weight of the MST?