gpt4 book ai didi

c++ - 如何让 min_element 捕获所有具有最低值的点?

转载 作者:塔克拉玛干 更新时间:2023-11-03 06:01:30 26 4
gpt4 key购买 nike

我正在编写一个程序来使用 graham scan 计算凸包的周长并且需要在一组数据点中找到最低的 y 坐标。我正在使用 std::min_element(vector.begin(), vector.end())重载<我结构中的运算符 point .问题是有些点可能共享相同的最低 y 坐标,在这种情况下,我需要使用它们的 x 值来比较它们。是否有任何快速作弊来检查是否有任何其他点与 min_element 共享相同的 y 而不必遍历所有内容?

结构:

struct cord{
cord():x(0),y(0){}
int x,y;
bool operator<(const cord &p) const { return y < p.y; }
};

typedef std::vector<cord>::iterator vecIter;

函数调用:

vecIter lowestPoint =
std::min_element(points.begin(), points.end());

std::cout << "the lowest point of the data set is: " << "(" <<
lowestPoint->x << "," << lowestPoint->y << ")" << std::endl;

最佳答案

那么,就这样? (替换您现有的 operator< 函数)

bool operator<(const cord &p) const
{
if (y != p.y)
return y < p.y;
else
return x < p.x;
}

关于c++ - 如何让 min_element 捕获所有具有最低值的点?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19408523/

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