免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 3995 | 回复: 3
打印 上一主题 下一主题

python二分法查找程序问题 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2011-04-23 15:35 |只看该作者 |倒序浏览
写了个折半查找的程序 总是不成功实在是找不到原因了
#!/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总是不成功啊

论坛徽章:
0
2 [报告]
发表于 2011-04-23 15:47 |只看该作者
数字和字符串比较了

sercher(int(sys.argv[1]))

论坛徽章:
0
3 [报告]
发表于 2011-04-23 18:12 |只看该作者
回复 2# llbgurs


    大侠指教一下 应该如何改呢 刚开始学习python

论坛徽章:
0
4 [报告]
发表于 2011-04-23 18:24 |只看该作者
回复 2# llbgurs


    哦 看到了 谢谢大侠指教啊
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP