I'm trying to solve a problem where I am to use merge sort to get the following case: in an array of n elements
get the lowest number on an array and then get the biggest number SO their subtraction (or difference between those numbers is biggest)
for example: n = 8 arr {7,8,10,20,4,19,50,70} I want to get 4 and 70, because their difference is 66 It really doesn't matter if I get the lowest and the biggest numbers, I only care for the biggest difference in their subtraction. ALSO, THE FIRST NUMBER MUST BE LOWEST THAN THE SECOND ONE, 70 and 4 is not allowed.
because this problem requires me to modify merge sort code, I was thinking: 1) get all the numbers divided into arrays of 1, 2) compare the i number in the array to the i+1 number, and if i number is lowest then get their difference and keep moving through all the positions in the array.
what do you think? also I'm having problem with setting the base case :S please help!