int overlap(int a, int b, int c, int d) { int _max= max( a, c); int _min = min( b, d); return _max<=_min ; }
a-b是个集合范围
c-d是个集合范围
同理,如果参数改为时间也是有效的