Can you help me identify which iterator is being used here? (Trivial, input, output)
int maxIndx = -1;
int maxSize = -1;
for (map<int, set<string> >::iterator itr = partitions.begin(); itr != partitions.end(); ++itr) {
int size = (*itr).second.size();
if (size > maxSize) {
maxSize = size;
maxIndx = (*itr).first;
}
}