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 ________.