A delivery truck must deliver packages to 6 different store locations (A, B, C, D, E, and F). The trip must start and end at C. The graph below shows the distances (in miles) between locations. We want to minimize the total distance traveled.Using only the nearest-neighbor, repetitive nearest-neighbor, and cheapest-link algorithms (not brute force) on this graph,
◦ the nearest-neighbor and the repetitive nearest-neighbor algorithms both yield the shortest trip.
◦ the cheapest-link and the repetitive nearest-neighbor algorithms both yield the shortest trip.
◦ the cheapest-link algorithm yields the shortest trip.
◦ the nearest-neighbor algorithm yields the shortest trip.
◦ the repetitive nearest-neighbor algorithm yields the shortest trip.