牛客网考研机试题集合:分组统计

考点:map容器,set容器

使用set 记录元素

vectorv[n]  v[i]存储i组中的元素

map 记录元素的个数

#include
using namespace std;
const int MAXSIZE=1001;


int main() {
	int n,m;
	cin>>m;
	while(m--) {
		cin>>n;
		set se;
		int a[n],x;
		vector v[MAXSIZE];
		map ma2;
		for(int i=0; i>a[i];
			ma2[a[i]]=0;
		}
		for(int i=0; i>x;
			se.insert(x);
			v[x].push_back(a[i]);
		}
		for(auto it=se.begin(); it!=se.end(); it++) {
			map ma=ma2;
			for(int i=0; ifirst<<"="<second;
				} else {
					cout<<","<first<<"="<second;
				}

			}

			cout<<"}"<

 

你可能感兴趣的:(牛客网考研机试题集合)