I have a Point Class and am creating a min-heap of Point objects.
class Point { int x; int y; public: Point(int _x, int _y) { x = _x; y =