class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param nums int整型vector * @param target int整型 * @return int整型 */ int search(vector<int>& nums, int target) { // 如果数组内没有元素,直接返回-1 if(nums.size()==0){ return -1; } //规定左边界和右边界 int r=nums.size(),l=0; //写循环,当左右边界重合的时候就是找...