离散化最妙写法

离散化最妙的写法

	map<int,int> m;
	for(int i=0;i<n;i++){
		scanf("%d",&x);
		x = m[x] ? m[x] : (m[x] = ++tot);
	}

你可能感兴趣的:(数据结构,程序设计算法)