二分查找中求中值時要注意溢出

// BinarySearch.cpp : Defines the entry point for the console application. // #include "stdafx.h" int a[100]={0}; int BinarySearch(int left, int right, int num) { if (left <= right) { int mid =
相關文章
相關標籤/搜索