Given an array a[] of N real numbers, design a linear-time algorithm to find the maximum value of a[j] - a[i] where j ≥ i. 1 package algorithms.analysis14; 2 3 public class Best { 4 5 public static void main(String[] args) { 6 double[] a = {5.0, 4.0,