import java.util.Random; public class MergeSortEtd { public static void main(String[] args) { int lg; if (args.length < 1) lg = 200; else lg = Integer.parseInt(args[0]); Random gen = new Random(); // just create two arrays for test int[] t1 =new int[lg]; int[] t2 =new int[lg]; for (int i = 0;i