算法
Sobremesa1
爱生活,爱code。
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
python_选择排序
ps: python2.x print "hello python!"python3.x print("hello python!")原创 2019-04-24 14:44:00 · 225 阅读 · 0 评论 -
python_二分查找
def binary_search(list, item); low = 0; high = len(list) - 1; while low <= high: mid = (low + high) / 2; guess = list[mid]; if guess == item: retur...原创 2019-04-24 14:40:23 · 485 阅读 · 1 评论
分享