本文主要是介绍1038: 顺序表中重复数据的删除,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
解法:
#include<iostream>
#include<vector>
#include<algorithm>
using namespace std;
int main() {int n, k;cin >> n;vector<int> arr(n);for (auto& x : arr) cin >> x;cin >> k;int sum = 0;for (auto x : arr) {if (x == k) sum++;}if (sum == n) {cout << "-1";}else {for (auto x : arr) {if (x == k) continue;cout << x << " ";}}return 0;
}
这篇关于1038: 顺序表中重复数据的删除的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!