JavaScript Quick Sort

Source: Internet
Author: User

If you write a sort, how would you write it? is the For loop done? Let's see how this is achieved:

functionQuickSort (arr) {if(arr.length<=1){            returnarr; }        varnum = Math.floor (ARR/2);varNumValue = Arr.splice (num,1); varleft=[]; varright=[];  for(vari=0;i<arr.length;i++){            if(arr[i]<NumValue)            {Left.push (arr[i]); }Else{Right.push (arr[i]); }        }        returnArguments.callee (left). Concat ([Numvalue],arguments.callee (right))}
View Code

Overall thought: Cut → queued, so recursive

Before touching this algorithm is a bit of a mask, will certainly think of writing two for the loop comparison, but, two for loop, the overall number of operations is definitely greater than the top of this sort

JavaScript 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.