Understanding the Recursion of mergesort

后端 未结 9 2033
感动是毒
感动是毒 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

提交回复
热议问题