我想检查一个向量的所有元素。通过检查条件,应该删除一个元素。
一种方法是通过嵌套的 for 循环擦除元素
for (int a = 0; a < rs.size(); a++)
{
Point A = rs[a];
for (int b = 1; b <= rs.size(); b++)
{
Point B = rs2[b];
float distance = sqrt(pow(B.x - A.x, 2) + pow(B.y - A.y, 2) * 1.0);
if (distance < 10.0)
{
if (distance > 0)
{
rs.erase(rs.begin() + b);
}
}
}
}
但这会在运行时影响向量及其大小。
第二种方法是在 unordered_set 中收集 b 的索引,但是如何删除原始向量中具有对应索引的元素?
unordered_set<int> index;
for (int a = 0; a < rs.size(); a++)
{
Point A = rs[a];
for (int b = 0; b < rs.size(); b++)
{
Point B = rs2[b];
float distance = sqrt(pow(B.x - A.x, 2) + pow(B.y - A.y, 2) * 1.0);
if (distance < 10.0)
{
if (distance > 0)
{
index.insert(b);
}
}
}
}
如您所料,这种方法也不起作用:
for (const int& idx : index)
{
rs.erase(rs.begin() + idx);
}
有什么帮助吗?