I am stuck trying to bubble sort a vector<vector<string>> vvs
If running a for loop like
for ( auto x : vvs )
which contains a line like
if ( x.at(pos) == (*need next x position*).at(pos) {
//perform sort and swap if needed
}
Is it possible to get the next position of the range based loop?