3

我有一个这样的排序列表

s = [1 , 4 ,6 , 9  ,10 ]

我想知道列表中是否存在一个数字,或者它是否存在于两个数字之间。如果它存在于两个数字之间,我想将它们打印出来。

现在我的代码看起来像这样

for x in s:
   if b == x: \\ b is the number
       print b
   elif b > x and b < s[s.index(x) + 1] and s.index(x) < len(s):
       print b , s[s.index(x) + 1]

有更好的方法吗?

4

2 回答 2

7

bisect 模块正是这样做的:

s = [1 , 4 ,6 , 9  ,10 ]
import bisect

x = 5
n = bisect.bisect_left(s, x)
if s[n:n+1] == [x]:
    print x, 'is in the list'
else:
    print x, 'comes between', s[n-1:n], 'and', s[n:n+1]
于 2012-09-18T08:49:47.890 回答
0

这不是完美的优化,但您可以避免多次使用 index() 方法!

for i,j in enumerate(s,1):
 if b == j: \\ b is the number
   print b
 elif b > j and b < s[i+1] and s[i] < len(s):
   print b , s[i + 1]
于 2012-09-18T08:52:59.047 回答