I have a vector :
std::vector<const City*> cities
I want to write a funtion which will return me another vector with same type but in which the position of objects will be taken randomly.
std::vector<const City*> TSP::rand_cities() const { }
Thank's for your help.