pencil4148 pencil4148 28-02-2024 Computers and Technology contestada Here is a recursive algorithm for reversing an array: algorithm reversearray(a, i, j): if i < j then swap a[i] and a[j] reversearray(a, i + 1, j - 1) return. This is an example as ________.