我编写了以下方法来检查范围列表是否交叉路径。另一种说法是范围不是嵌套的。
def check_ranges(lst):
for i in range(len(lst)):
for j in range(i+1,len(lst)):
# (a,b) and (x,y) are being compared
a = lst[i][0]
b = lst[i][1]
x = lst[j][0]
y = lst[j][1]
#both of these conditions mean that they cross
if x < a and b > y:
return True
if x > a and b < y:
return True
return False
第一个应该返回 false,第二个应该返回 true。
check_ranges([(7,16),(6,17),(5,18),(4,19)])
check_ranges([(5,16),(6,17),(5,18),(4,19)])
它像现在一样工作,但它似乎真的效率低下。如果这是一个常见问题或者是否有更有效的解决方案,现在有人吗?