循环递增数组中查找是否存在某个数
#include #include using namespace std;// 在循环递增数组中查看是否存在某个数// 返回-1表示数组中没有该元素int search(int arr[], int len, int value){ if(arr == NULL || len <= 0) { return -1; } int start = 0; int end = l