Question: Merging two ordered arrays is a process of combining the two arrays into one array. The new array should contain all elements of the two
Merging two ordered arrays is a process of combining the two arrays into one array. The new array should contain all elements of the two arrays in order.\ \ For example, assume two sources arrays are:\ \ srcArray1: 12 28 30\ \ srcArray2: 2 4 11 19 25 50 89\ \ Then, the returned destination array should be:\ \ destArray: 2 4 11 12 19 25 28 30 50 89\ \ Create a class called "ArrayMethods" and add a static merge method to the class. Start with the following method definition:\ \ public long[] merge(long[] srcArray1, long[] srcArray2) {\
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
