/** * * @param arr int整型一维数组 the array * @param arrLen int arr数组长度 * @return int整型 */ // // int maxLength(int* arr, int arrLen ) { // int i = 0, j = 0, max = 0, k, temp = 0; // while (i < arrLen) { // i++; // temp = i - j; // if (temp > max)max = temp; // ...