//find a maximum element in the array.
findMax(A)
/*
* find the max value between A[0] to A[A.length-1],
* all the elements in array A have indexes from
* zero to A.length-1, this means the last element in
* array A is A[A.length-1]
*/
findMaxHelper(A, 0, A.length)
/*
* find the max value between A[left] to A[right-1],
* A[right] is not included in comparison to find max,
* only A[left] to A[right-1] are taken into consideration.
*/
findMaxHelper(A, left, right)
//'left' equals 'right-1' means the array range
//from 'left' to 'right-1' contains only 1 item,
//so just return the value. Because it's the only
//element in the range, definitely it's the max value
if (left == right - 1)
return A[left]
else
/*
* the whole range A[left] to A[right-1] is now
* divided into 2 ranges: A[left] to A[mid-1],
* and A[mid] to A[right-1], the max value
* will be mathematically:
*
* max1 = max(A[left]..A[mid-1])
* max2 = max(A[mid]..A[right-1])
* max(A[left]..A[right-1]) = max(max1,max2)
*/
//the middle index of the range [left,right] is
//just mathematically calcualted as half of the sum
//of left and right
max1 = findMaxHelper(A, left, (right + left) / 2)
//'max1' above is the max value of range A[left]..A[mid-1],
//'max2' here will be the max value of range A[mid]..A[right-1]
max2 = findMaxHelper(A, (right + left) / 2, right)
//find the larger number between 'max1' and 'max2',
//so that, max = max(max1,max2), then return the
//max value found
if (max1 > max2)
return max1
else
return max2