Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
// Find a maximum element in the array.
findMax(A)
   findMaxHelper(A, 0, A.length)

findMaxHelper(A, left, right)
   if (left == right - 1) 
      return A[left]
   else
      max1 = findMaxHelper(A, left, (right + left) / 2)
      max2 = findMaxHelper(A, (right + left) / 2, right)

      if (max1 > max2) 
         return max1 
      else 
         return max2

I am having a hard time understanding what is happening in this pseudo-code.

Can someone help explain what is happening at each line. I need to understand this code before I can answer the questions.

I know that the function findMax calls the helper function findMaxHelper, then findMaxHelper uses recursion. Other than that, I really don't understand it.

share|improve this question

3 Answers

You are using Divide and Conquer algorithm for finding the maximum element from the array. First you are dividing the array into individual elements(divide), then you are comparing the elements(conquer). You are dividing the array using calling findMaxHelper recursively.

The general idea of Divide and conquer is shown in the figure:

enter image description here

Example:

enter image description here Here max is same as your findMaxHelper function with two arguments i.e. left and right.

Check this example for more in depth understanding of the concept.

share|improve this answer
What do the left and right mean – Justin Bains Oct 29 '12 at 7:16
@JustinBains left and right are the indexes of the first and last element of the arrays(Initial as well as intermediate arrays). – Jaguar Oct 29 '12 at 7:17
A general suggestion to anyone struggling with understanding recursive code: do not try to dive deep and follow. Better do a "zoom out" and try to understand the bigger picture. Recursive functions usually take the input, perform basic operation and repeat the same for a smaller problem, just like in this code snippet. You should try to identify the smaller problem(s), that's the core of understanding such code. – icepack Oct 29 '12 at 7:19

findMaxHelper divides the array into half each time, and find the max in left,right:

eg you have array A = [1, 3, 5, 8], call findMax(A) -> findMaxHelper(A, 0, A.length):

     max1 | max2
     1 3  | 5 8

max1|max2 | max1|max2
1   |3    | 5   |8
share|improve this answer
//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
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.