吴晓阳
发布于 2023-05-12 / 355 阅读
0

结构体定义运算符

struct Node
{
    int p, n;
    bool operator < (Node t) const
    {
        return p > t.p;
    }
}e[25];