结构体排序 Posted on 2018-06-22 | In Program , C++ 友元函数 / 重载$operator$ 友元函数12345friend bool operator <(const node &a,const node &b){ return a.x<b.x; ........}const修饰表示不可修改&直接传的是地址,速度更快 重载operator123bool operator<(const node &a) const{ return x<a.x; .......}