make_heap并排序x和y坐标

时间:2011-12-26 14:10:09

标签: c++ algorithm stl

我想得到最高的坐标( x, y ) 以下是我写的代码,这是正确的代码。

#include <vector>
#include <algorithm>
#include <iostream>
#include <iterator>

struct item_t {
    int x;
    int y;
    item_t( int h, int w ) : x(h), y(w) {}
    friend std::ostream& operator<<(std::ostream& os, const item_t& gt) {
        os << "(" << gt.x << "," << gt.y << ")";
        return os;
    }
};
typedef std::vector<item_t> item_list_t;
typedef item_list_t::iterator item_list_itr_t;

struct compare_x_y {
    bool operator ()(const item_t& left, const item_t& right) const {
        return left.x < right.x && left.y < right.y;
    }
};


int main ( int argc, char **argv) { 
    item_list_t items;

    items.push_back(item_t(15, 176));
    items.push_back(item_t(65, 97));
    items.push_back(item_t(72, 43));
    items.push_back(item_t(102, 6));
    items.push_back(item_t(191, 189));
    items.push_back(item_t(90, 163));
    items.push_back(item_t(44, 168));
    items.push_back(item_t(39, 47));
    items.push_back(item_t(123, 37));

    std::make_heap (items.begin(),items.end(),compare_x_y());
    std::cout << "initial max heap   : " << "(" << items.front().x <<"," << items.front().y << ")" << std::endl;


}

是否适用于此输入,但不适用于其他输入。

1 个答案:

答案 0 :(得分:5)

您的比较函数不是strict weak ordering,因此使用它会得到未定义的结果。

它不是一个严格的弱序,因为等价关系不是传递的。例如,(2,2)相当于(4,1),(4,1)相当于(3,3)。但是(2,2)并不等同于(3,3)。 (如果两个值都不小于另一个,则认为两个值相等。)

您需要提供另一个比较功能。一些例子:

  • 比较x,然后y,如果x值相等。
  • 比较两点的x+y值。