Understanding the Recursion of mergesort

后端 未结 9 2010
感动是毒
感动是毒 2020-12-13 07:01

Most of the mergesort implementations I see are similar to this. intro to algorithms book along with online implentations I search for. My recursion chops don\'t go much fur

相关标签:
9条回答
  • 2020-12-13 07:25

    MERGE SORT:

    1) Split the array in half
    2) Sort the left half
    3) Sort the right half
    4) Merge the two halves together

    0 讨论(0)
  • 2020-12-13 07:25

    process to divide the problem into subproblems Given example will help you understand recursion. int A[]={number of element to be shorted.}, int p=0; (lover index). int r= A.length - 1;(Higher index).

    class DivideConqure1 {
    void devide(int A[], int p, int r) {
        if (p < r) {
            int q = (p + r) / 2; // divide problem into sub problems.
            devide(A, p, q);   //divide left problem into sub problems
            devide(A, q + 1, r); //divide right problem into sub problems
            merger(A, p, q, r);  //merger the sub problem
        }
    }
    
    void merger(int A[], int p, int q, int r) {
        int L[] = new int[q - p + 1];
        int R[] = new int[r - q + 0];
    
        int a1 = 0;
        int b1 = 0;
        for (int i = p; i <= q; i++) {  //store left sub problem in Left temp
            L[a1] = A[i];
            a1++;
        }
        for (int i = q + 1; i <= r; i++) { //store left sub problem in right temp
            R[b1] = A[i];
            b1++;
        }
        int a = 0;
        int b = 0; 
        int c = 0;
        for (int i = p; i < r; i++) {
            if (a < L.length && b < R.length) {
                c = i + 1;
                if (L[a] <= R[b]) { //compare left element<= right element
                    A[i] = L[a];
                    a++;
                } else {
                    A[i] = R[b];
                    b++;
                }
            }
        }
        if (a < L.length)
            for (int i = a; i < L.length; i++) {
                A[c] = L[i];  //store remaining element in Left temp into main problem 
                c++;
            }
        if (b < R.length)
            for (int i = b; i < R.length; i++) {
                A[c] = R[i];  //store remaining element in right temp into main problem 
                c++;
            }
    }
    
    0 讨论(0)
  • 2020-12-13 07:28

    My apologies if this has been answered this way. I acknowledge that this is just a sketch, rather than a deep explanation.

    While it is not obvious to see how the actual code maps to the recursion, I was able to understand the recursion in a general sense this way.

    Take a the example unsorted set {2,9,7,5} as input. The merge_sort algorithm is denoted by "ms" for brevity below. Then we can sketch the operation as:

    step 1: ms( ms( ms(2),ms(9) ), ms( ms(7),ms(5) ) )

    step 2: ms( ms({2},{9}), ms({7},{5}) )

    step 3: ms( {2,9}, {5,7} )

    step 4: {2,5,7,9}

    It is important to note that merge_sort of a singlet (like {2}) is simply the singlet (ms(2) = {2}), so that at the deepest level of recursion we get our first answer. The remaining answers then tumble like dominoes as the interior recursions finish and are merged together.

    Part of the genius of the algorithm is the way it builds the recursive formula of step 1 automatically through its construction. What helped me was the exercise of thinking how to turn step 1 above from a static formula to a general recursion.

    0 讨论(0)
  • 2020-12-13 07:31

    I think the "sort" function name in MergeSort is a bit of a misnomer, it should really be called "divide".

    Here is a visualization of the algorithm in process.

    enter image description here

    Each time the function recurses, it's working on a smaller and smaller subdivision of the input array, starting with the left half of it. Each time the function returns from recursion, it will continue on and either start working on the right half, or recurse up again and work on a larger half.

    Like this

    [************************]mergesort
    [************]mergesort(lo,mid)
    [******]mergesort(lo,mid)
    [***]mergesort(lo,mid)
    [**]mergesort(lo,mid)
     [**]mergesort(mid+1,hi)
    [***]merge
       [***]mergesort(mid+1,hi)
       [**]mergesort*(lo,mid)
        [**]mergesort(mid+1,hi)
       [***]merge
    [******]merge
          [******]mergesort(mid+1,hi)
          [***]mergesort(lo,mid)
          [**]mergesort(lo,mid)
           [**]mergesort(mid+1,hi)
          [***]merge
             [***]mergesort(mid+1,hi)
             [**]mergesort(lo,mid)
               [**]mergesort(mid+1,hi)
             [***]merge
          [******]merge
    [************]merge
                [************]mergesort(mid+1,hi)
                [******]mergesort(lo,mid)
                [***]mergesort(lo,mid)
                [**]mergesort(lo,mid)
                 [**]mergesort(mid+1,hi)
                [***]merge
                   [***]mergesort(mid+1,hi)
                   [**]mergesort(lo,mid)
                     [**]mergesort(mid+1,hi)
                   [***]merge
                [******]merge
                      [******]mergesort(mid+1,hi)
                      [***]mergesort(lo,mid)
                      [**]mergesort*(lo,mid)
                        [**]mergesort(mid+1,hi)
                      [***]merge
                         [***]mergesort(mid+1,hi)    
                         [**]mergesort(lo,mid)
                          [**]mergesort(mid+1,hi)
                         [***]merge
                      [******]merge
                [************]merge
    [************************]merge
    
    0 讨论(0)
  • 2020-12-13 07:34

    the mergesort() simply divides the array in two halves until the if condition fails that is low < high. As you are calling mergesort() twice : one with low to pivot and second with pivot+1 to high, this will divide the sub arrays even more further.

    Lets take an example :

    a[] = {9,7,2,5,6,3,4}
    pivot = 0+6/2 (which will be 3)
    => first mergesort will recurse with array {9,7,2} : Left Array
    => second will pass the array {5,6,3,4} : Right Array
    

    It will repeat until you have 1 element in each left as well as right array. In the end you'll have something similar to this :

    L : {9} {7} {2} R : {5} {6} {3} {4} (each L and R will have further sub L and R)
    => which on call to merge will become
    
    L(L{7,9} R{2}) : R(L{5,6} R{3,4})
    As you can see that each sub array are getting sorted in the merge function.
    
    => on next call to merge the next L and R sub arrays will get in order
    L{2,7,9} : R{3,4,5,6}
    
    Now both L and R sub array are sorted within
    On last call to merge they'll be merged in order
    
    Final Array would be sorted => {2,3,4,5,6,7,9}
    

    See the merging steps in answer given by @roliu

    0 讨论(0)
  • 2020-12-13 07:37

    Concerning the recursion part of the merge sort, I've found this page to be very very helpful. You can follow the code as it's being executed. It shows you what gets executed first, and what follows next.

    Tom

    0 讨论(0)
提交回复
热议问题