Classic algorithm 002--fast sorting

Source: Internet
Author: User

Basic concepts of fast sorting:

A quick sort is an improvement to the bubbling sort. Its basic idea is: by a trip to sort the data to be sorted into two separate parts, one part of all the data is smaller than the other part of all the data, and then the two parts of the data are quickly sorted by this method, the entire sorting process can be recursive, so as to achieve the entire data into an ordered sequence.

A group of values, using a quick sort (Quicksort), from small to large sort.

 classProgram {Static voidMain (string[] args) {            int[] arrayints =New int[] { About,6,7,2, -,8,2}; Quick_by (refArrayints,0, arrayints.length); }         Public Static voidQuick_by (ref int[] Array,intLeftintRight ) {            if(Left <Right ) {                inti =Left ; intj = Right-1; intMiddle = array[(left + right)/2];  while(true)                {                     while(I < right && Array[i] <middle) {i++; }                     while(J >0&& Array[j] >middle) {J--; }                    if(i = = j) Break; Array[i]= Array[i] +Array[j]; ARRAY[J]= Array[i]-Array[j]; Array[i]= Array[i]-Array[j]; if(Array[i] = = Array[j]) j--; } quick_by (refarray,left,i); Quick_by (refarray,i+1, right); }        }
}

Classic algorithm 002--Quick sort

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.