智健blog

摘要: #include <stdlib.h> #include <stdio.h> //二分查找非递归 int Binary_Search(int list[],int key,int length){ int low=0,high=length-1; while (low<=high){ int mid 阅读全文
posted @ 2020-07-30 19:53 智健 阅读(296) 评论(0) 推荐(0) 编辑