离散化的基本操作
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了离散化的基本操作相关的知识,希望对你有一定的参考价值。
#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]<<" "; }
以上是关于离散化的基本操作的主要内容,如果未能解决你的问题,请参考以下文章