struct Node{
int w;
bool operator<(Node a)const
{
return a.w<w;
// 从小到大排序
}
}node[5]
08-21
1647
10-22
struct Node{
int w;
bool operator<(Node a)const
{
return a.w<w;
// 从小到大排序
}
}node[5]