Sorting algorithm Getting Started merge sort (Java implementation)

Source: Internet
Author: User

Merge sort is a typical application of divide-and-conquer method. Reference data structure and algorithm analysis-java language description

Merge sort actually two things to do:

(1) "decomposition"--divides the sequence binary each time.

(2) "Merge"--merges two sorted tables.

Merge: For two input arrays A and B, an output array of C, and 3 counters actr, Bctr, cctr, their initial placement at the beginning of the corresponding array. A[ACTR] and b[bctr] the smaller copy to the next position in C, the related counter advances one step forward. When one of the two input tables is exhausted, copies the remaining parts of the other table to C.

Worst run time O (NLOGN)

Sorting algorithm Getting Started merge sort (Java implementation)

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.