摘要: 最近学习《算法图解》,记录一下自己默写的代码和算法,用Python书写。 二分查找: def binary_search(list,item): low = 0 high = len(list) - 1 while low <= high: mid = (int)((low + high) / 2) 阅读全文
posted @ 2022-07-29 20:50 罗毅豪 阅读(59) 评论(0) 推荐(0) 编辑