标签:col none splay str 结构 isp ons ret color
注意是 d < x.d
struct Node { int d, e; bool operator < (const Node x) const { return d < x.d; //从小到大排序 } };
结构体内重载
原文地址:https://www.cnblogs.com/warmingtxdy/p/14627152.html