gpt4 book ai didi

c++ - 如果 {x,y} 和 {y,x} 也被认为是相同的,删除 vector> 中重复项的最简单方法是什么?

转载 作者:行者123 更新时间:2023-11-30 02:36:23 29 4
gpt4 key购买 nike

如果 2 对 {x,y} 和 {y,x} 也被认为是重复的,是否有内置方法删除对 vector 的重复项?

例如,如果我有这样的 vector :

{{1,2},{4,3},{2,1},{5,6},{1,2},{3,4},{0,1}}

我想删除重复项成为:

{{1,2},{4,3},{5,6},{0,1}}

是否有任何内置函数来处理 {x,y} 和 {y,x} 相同的情况?

如果没有,最简单的方法是什么?

我考虑过使用 for 循环类似的东西但不起作用:

vector<int> isRemove;
int count=0;
for(pair<int,int> a : p){
isRemove.push_back(0);
for(pair<int,int> b : p){
if((a.first==b.first && a.second==b.second) || (a.first==b.second && a.second==b.first)){
isRemove[count]=1;
break;
}
}
count++;
}
for(int i=isRemove.size()-1;i>=0;i--){
printf("%d\n",isRemove[i]);
if(isRemove[i]){
p.erase(p.begin()+i);
}
}

还有没有更简单的方法?

最佳答案

std::set拥有独特的值(value)。唯一性由 comparator 决定.您可以按如下方式实现所需的解决方案 ( live example ):

#include <algorithm>
#include <iostream>
#include <set>
#include <vector>

struct custom_comparator {
bool operator()(const std::pair<int, int>& a,
const std::pair<int, int>& b) const
{
return less_comparator(std::minmax(a.first, a.second),
std::minmax(b.first, b.second));
}

std::less<std::pair<int, int>> less_comparator;
};

int main() {
// Input data including some duplicates
std::vector<std::pair<int, int>> a = {
{1, 2}, {4, 3}, {2, 1}, {5, 6}, {5, 6}, {6, 5}, {1, 2}, {3, 4}, {0, 1}
};

// Specify custom comparator for the set
std::set<std::pair<int, int>, custom_comparator> unique;

// Fill the set
for (const auto& p : a) {
unique.insert(p);
}

// Demonstrate uniqueness by outputting the elements of the set
for (const auto& p : unique) {
std::cout << p.first << ", " << p.second << "\n";
}

return 0;
}

输出:

0, 1
1, 2
4, 3
5, 6

您只需定义一个带有自定义比较器的集合,以确保在调用 std::less 时每对中的顺序一致,然后填充该集合。

关于c++ - 如果 {x,y} 和 {y,x} 也被认为是相同的,删除 vector<pair<A,A>> 中重复项的最简单方法是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32841293/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com