Q89
What will be the auxiliary space requirement of the following code? #include using namespace std; void func(int arr[], int left, int right) while (left < right) int temp = arr[left]; arr[left] = arr[right]; arr[right] = temp; left++; right--; void printArray(int arr[], int size) for (int i = 0; i < size; i++) cout << arr[i] << " "; int main() int arr[] = 1,4,3,5; int n = sizeof(arr) / sizeof(arr[0]); func(arr, 0, n-1); printArray(arr, n); return 0;
A.
O(1)
AnswerB.
O(n)
C.
O(log n)
D.
O(n log n)
Answer: Option A
Solution
Answer: Option A
No explanation is given for this question Let's Discuss on Board