Write a method called interleave that accepts two ArrayLists of integers a1 and a2 as parameters and

Question:

Write a method called interleave that accepts two ArrayLists of integers a1 and a2 as parameters and inserts the elements of a2 into a1 at alternating indexes. If the lists are of unequal length, the remaining elements of the longer list are left at the end of a1. For example, if a1 stores [10, 20, 30] and a2 stores [4, 5, 6, 7, 8], the call of interleave(a1, a2); should change a1 to store [10, 4, 20, 5, 30, 6, 7, 8] . If a1 had stored [10, 20, 30, 40, 50] and a2 had stored [6, 7, 8] , the call of interleave(a1, a2); would change a1 to store [10, 6, 20, 7, 30, 8, 40, 50] .

Fantastic news! We've Found the answer you've been seeking!

Step by Step Answer:

Related Book For  book-img-for-question
Question Posted: