码迷,mamicode.com
首页 > 其他好文 > 详细

离散化的基本操作

时间:2017-06-08 23:44:53      阅读:256      评论:0      收藏:0      [点我收藏+]

标签:blog   clu   names   nbsp   using   for   tor   i++   cpp   

#include<bits/stdc++.h>
using namespace std;
vector<int> a;

int main()
{
	int x;
	for(int i=0;i<=7;i++){
		cin>>x;
		a.push_back(x);
	}	
	sort(a.begin(),a.end());
	int m=unique(a.begin(),a.end())-a.begin();
	cout<<m<<endl;
	for(int i=0;i<m;i++)
		cout<<a[i]<<" ";
}

 

离散化的基本操作

标签:blog   clu   names   nbsp   using   for   tor   i++   cpp   

原文地址:http://www.cnblogs.com/foreverpiano/p/6964986.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!