解题思路:
使用STL中的set集合,set的不重复性和自带排序的功能,完全符合此题的,去除重复和排序的要求
注意事项:
参考代码:
#include<iostream> #include<math.h> #include<string> #include<algorithm> #include<functional> #include<set>//需要包含的头文件 using namespace std; int main(){ set<int> s; int n; cin >> n; for (int i = 1; i <= n; i++){ int x; cin >> x; s.insert(x); } cout << s.size()<<endl; set<int>::iterator it = s.begin(); for (; it != s.end(); it++){ cout << *it << " "; } return 0; }
0.0分
4 人评分
人民币问题 (C语言代码)浏览:720 |
十->二进制转换 (C语言代码)浏览:1444 |
Tom数 (C语言代码)浏览:2076 |
C语言程序设计教程(第三版)课后习题6.7 (C语言代码)浏览:778 |
简单编码 (C++代码)(这里推荐用switch)浏览:999 |
C语言训练-求PI* (C语言代码)(正确结果竟然是谜一样的3.141591)浏览:1339 |
C二级辅导-同因查找 (C语言代码)浏览:592 |
简单的a+b (C语言代码)浏览:765 |
C语言程序设计教程(第三版)课后习题11.5 (C语言代码)浏览:932 |
C语言程序设计教程(第三版)课后习题5.8 (C语言代码)浏览:613 |