- 论坛徽章:
- 0
|
写了个折半查找的程序 总是不成功实在是找不到原因了
#!/usr/bin/python
import sys
def sercher(y):
numgroup=[1,4,5,7,8,9,13,19,20]
low=0
high=len(numgroup)-1
#mid=(low+high)/2
while(low<high):
mid=(low+high)/2
print "the mid is",mid
print "the mid value is",numgroup[mid]
guess=numgroup[mid]
if guess == y:
print "the number you want is",mid
print "one"
elif guess > y:
high=mid-1
print "two"
else:
low=mid+1
print "three"
else:
print "not found"
sercher(sys.argv[1])
执行[root@localhost python-script]# python midserche.py 5
the mid is 4
the mid value is 8
three
the mid is 6
the mid value is 13
three
the mid is 7
the mid value is 19
three
not found总是不成功啊 |
|