标签: java arrays recursion
我正在解决一个问题,我必须以递归方式反转数组中的整数。
public int[] reverse(int[] A, int i){ if(i = A){ return; } }
答案 0 :(得分:1)
是“O(n / 2)”但是since the multiplication of a constant for big O notation doesn't affect the big O,它是O(n)。