Arrays and Iteration
Reverse Array In Place (Two Pointers)
Walk two indices toward each other from the ends of the array, swapping at each step. Stops when the indices meet or cross. Demonstrates the two-pointer pattern with the smallest possible state.
Algorithm
Canonical input [1, 2, 3, 4, 5, 6, 7] (odd length, middle element stays
put) yields three swap frames and reverses to [7, 6, 5, 4, 3, 2, 1].
two pointers
`left` starts at index `0`, `right` starts at `n - 1`. Each loop iteration swaps `arr[left]` and `arr[right]` and moves the pointers toward each other.
Basic Implementation
basic.rb
Replay: real traced execution (multi-file project)
arr = [1, 2, 3, 4, 5, 6, 7]
left = 0
right = arr.length - 1
while left < right
tmp = arr[left]
arr[left] = arr[right]
arr[right] = tmp
left = left + 1
right = right - 1
end
puts arr.inspect
arr ← [1, 2, 3, 4, 5, 6, 7]
1arr = [1, 2, 3, 4, 5, 6, 7]2left = 0values this step[1, 2, 3, 4, 5, 6, 7]arrleft ← 0
1arr = [1, 2, 3, 4, 5, 6, 7]2left = 03right = arr.length - 1values this step0left[1, 2, 3, 4, 5, 6, 7]arrright ← 6
2left = 03right = arr.length - 14while left < rightvalues this step6right0leftarr ← [7, 2, 3, 4, 5, 6, 1]
5tmp = arr[left]6arr[left] = arr[right]7arr[right] = tmpvalues this step[1, 2, 3, 4, 5, 6, 7] → [7, 2, 3, 4, 5, 6, 1]arr0left6rightleft ← 1
7arr[right] = tmp8left = left + 19right = right - 1values this step0 → 1leftright ← 5
8 left = left + 19 right = right - 110endvalues this step6 → 5rightarr ← [7, 6, 3, 4, 5, 2, 1]
5tmp = arr[left]6arr[left] = arr[right]7arr[right] = tmpvalues this step[7, 2, 3, 4, 5, 6, 1] → [7, 6, 3, 4, 5, 2, 1]arr1left5rightleft ← 2
7arr[right] = tmp8left = left + 19right = right - 1values this step1 → 2leftright ← 4
8 left = left + 19 right = right - 110endvalues this step5 → 4rightarr ← [7, 6, 5, 4, 3, 2, 1]
5tmp = arr[left]6arr[left] = arr[right]7arr[right] = tmpvalues this step[7, 6, 3, 4, 5, 2, 1] → [7, 6, 5, 4, 3, 2, 1]arr2left4rightleft ← 3
7arr[right] = tmp8left = left + 19right = right - 1values this step2 → 3leftright ← 3
8 left = left + 19 right = right - 110endvalues this step4 → 3rightwhile left < right
3right = arr.length - 14while left < right5 tmp = arr[left]values this step[7, 6, 5, 4, 3, 2, 1]arr3left3right
Complexity
- Time: O(n)
- Space: O(1)
Implementation notes
- Ruby: explicit three-line
tmp = arr[left]; arr[left] = arr[right]; arr[right] = tmpswap keeps the move visible. The stdlibarr.reverse(or the in-placearr.reverse!) would hide the lesson entirely, andarr[left], arr[right] = arr[right], arr[left]parallel assignment would collapse the swap into a single frame. left = 0andright = arr.length - 1use plainIntegerindices; theleft < rightguard handles the meet-in-the-middle exit honestly for the odd-length canonical input.- The replay shows both
leftandright, the values about to be swapped, and the array contents after the swap. The loop-exit frame is the moment the pointers meet.