华为机试题 提取不重复的整数
Posted 小师叔
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了华为机试题 提取不重复的整数相关的知识,希望对你有一定的参考价值。
简介
简单
code
#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include <math.h>
#include <sstream>
#include <map>
using namespace std;
int main() {
int n;
cin >> n;
stringstream ss;
ss << n;
string o;
ss >> o;
string r;
map<char, bool> m;
for(int i=o.size() - 1; i>=0; i--){
if(!m[o[i]]){
r.push_back(o[i]);
m[o[i]] = true;
}
}
cout << r << endl;
return 0;
}
以上是关于华为机试题 提取不重复的整数的主要内容,如果未能解决你的问题,请参考以下文章