我想知道如何让Toast.makeText`告诉我路径中城市的顺序
代码:
shortest = TSP.tsp(Matrix);
for(int i=0; i < 20 ; i++)
{
googleMap.addPolyline(new PolylineOptions().geodesic(true)
.add(new LatLng(placeLatitude[shortest[i]],placeLongitude[shortest[i]]))
.add(new LatLng(placeLatitude[shortest[i+1]],placeLongitude[shortest[i+1]]))
);
}
}