- 博客(1)
- 收藏
- 关注
原创 noj算法1001二分查找
#include <stdio.h> int n; int binarySearch(int a[],long key) { int left = 0; int right = n; while(left<=right) { int mid = (left+right)/2; if(a[mid]==key) { return mid; } e...
2020-10-04 23:30:08 281
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人