定义一个含有多个变量的结构体 struct s//定义一个结构体s { int b , e;//结构体中有两个变量 bool operator < (const s&c)const { return e < c.e;重载<操作符。可以对两个结构体使用<操作符进行比较 } } compare[max_num];