判断两个区间是否交集 2018-02-10 ~ 1 min 默认分类 如果两个区间不相交,那么最大的开始端一定大于最小的结束端 if(max(a1, a2) < min(b1, b2)){ return "有交集" }else{ return "无交集" }