js object array quick sorting by attributes_javascript skills
I ran it under IE according to the recommended program. Indeed, the sorting time is very small.
<script> <br>/* <br> * Shuffle <br>*/ <br>function getRandomPlayCard(m){ <br>var array1=new Array(m); <br>for(var i=0;i<m;i ){ <BR>var rnd=Math.floor(Math.random()*(i 0.99999)) <BR>array1[i]=array1[rnd]; <BR>array1[rnd]=i; <BR>} <BR>return array1; <BR>}; <BR>/* <BR>* Quick sort, sort by an attribute or by "function to get sorting basis". <BR>* @method soryBy <BR>* @static <BR>* @param {array} arr Array to be processed<BR>* @param {string|function} prop Sort by attribute, get<BR>* @param {boolean} desc Descending order<BR>* @return {array} Return sorting The new array after <BR>*/ <BR>var sortBy =function (arr, prop, desc){ <BR>var props=[], <BR>ret=[], <BR>i=0, <BR>len=arr.length; <BR>if(typeof prop=='string') { <BR>for(; i<len; i ){ <BR>var oI = arr[i]; <BR>(props [i] = new String(oI && oI[prop] || ''))._obj = oI; <BR>} <BR>} <BR>else if(typeof prop=='function') { <BR> for(; i<len; i ){ <BR>var oI = arr[i]; <BR>(props[i] = new String(oI && prop(oI) || ''))._obj = oI; <BR>} <BR>} <BR>else { <BR>throw 'Wrong parameter type'; <BR>} <BR>props.sort(); <BR>for(i=0; i<len; i ) { <BR>ret[i] = props[i]._obj; <BR>} <BR>if(desc) ret.reverse(); <BR>return ret; <BR>}; <BR>for( var i=0;i<1000;i ){ <BR>document.write('<div>a' i '</div>') <br>} <br>var els=document.getElementsByTagName(' div'); <br>var cards=getRandomPlayCard(els.length); <br>var randomEls=[]; <br>for(var i=0,len=cards.length;i<len;i ) randomEls[ cards[i]]=els[i];//Shuffle the element array according to the shuffled cards<BR>alert(['Total number: ',randomEls.length,'After shuffling the order: ',randomEls[0]. innerHTML,randomEls[randomEls.length-1].innerHTML]); <BR>var d0=new Date(); <BR>var elsSorted=sortBy(randomEls,function(el){return el.sourceIndex 100000000;}) <BR>alert(['Total number:',elsSorted.length,'Sort time-consuming:',new Date()-d0,'After resorting: ',elsSorted[0].innerHTML,elsSorted[elsSorted.length-1] .innerHTML]); <BR></script>
Array’s native sort, when it passes a comparison function, it requires multiple comparisons due to the sorting algorithm it uses internally. , so it is natural that it takes time.
The quick sort above does not have multiple comparisons,
but:
1. Take out the el attribute value and use the attribute value to generate a String object,
2. Append el to the String object.
3. Use String objects to form an array.
4. Use native sort to sort the String object array.
5. In the sorted String array, remove el in order.
You will get the sorted el array.

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

How to implement quick sorting in Python: 1. Define a function called quick_sort and use the recursive method to implement quick sorting; 2. Check the length of the array. If the length is less than or equal to 1, return the array directly. Otherwise, select the array. The first element is used as the pivot element (pivot), and then the array is divided into two sub-arrays smaller than the pivot element and larger than the pivot element; 3. Connect the two sub-arrays and the pivot element to form a sorted array. .

Java implementation of quick sort and its performance analysis Quick sort (QuickSort) is a very commonly used and efficient sorting algorithm. It is a divide and conquer (Divide and Conquer) idea. This algorithm divides an array into two sub-arrays, then sorts the two sub-arrays respectively, and finally turns the entire array into an ordered sequence. Quick sort shows excellent performance when processing large-scale data. Quick sort is implemented recursively. The basic idea is as follows: Choose a base

Master the key skills and precautions of Java quick sort. Quick sort (QuickSort) is a commonly used sorting algorithm. Its core idea is to divide the sequence to be sorted into two independent parts by selecting a benchmark element, and all the elements in one part are equal. is less than the base element, and all elements of the other part are greater than the base element, then the two parts are recursively sorted, and finally an ordered sequence is obtained. Although quick sort has a time complexity of O(nlogn) in the average case, it degenerates to O(nlogn) in the worst case

ThereareseveralwaystosortanarrayofobjectsbyobjectfieldsinPHP.Herearesomecommonapproaches:Usingusor()functionwithacustomcomparisonfunctionImplementing a custom sorting algorithmUsing the array_multisort() functionUsingusor()FunctionwithaCustomComparisonFunctionHere'sanexampleofusingtheusor

Quick sort method: 1. Create a Java sample file; 2. Implement the quick sort algorithm through the quickSort method; 3. Select an element in the array as the pivot (pivot), and divide the array into two sub-arrays, one containing the pivot The element with the smaller element is the smaller element, and the other contains the element that is larger than the pivot element, and then the quick sort algorithm is recursively applied to the two sub-arrays; 4. Sort the array in the main method and output the result.

The implementation principle and optimization of Java quick sort function. Quick sort is an efficient sorting algorithm. Its implementation idea is to divide a large problem into multiple small problems through the divide and conquer method, and solve the sub-problems recursively to finally obtain the overall solution. . In quick sort, we need to select a benchmark element and divide the array into two parts, one part is smaller than the benchmark element, and the other part is larger than the benchmark element. The two parts are then quickly sorted again until there is only one element per subproblem. Finally, the solutions to all subproblems are combined to obtain the array's

How to implement the quick sort algorithm in Java Quick sort (QuickSort) is a commonly used and efficient sorting algorithm. Its basic idea is to use the divide and conquer strategy (Divide and Conquer). By selecting one element at a time as the benchmark value, the array to be sorted is divided into two parts, one part is smaller than the benchmark value, and the other part is larger than the benchmark value, and then the two parts are processed separately. Recursive sorting, and finally achieve sorting of the entire array. Below we will introduce in detail how to use Java language to achieve rapid sorting

PHP is a very popular programming language and it is widely used for web development. In PHP, array is a very common data type and a very powerful data structure. Because of this, PHP provides many array functions to help developers handle and manipulate arrays. This includes the quick sort function, which helps us sort arrays quickly. Quick sort is a common sorting algorithm. Its basic idea is to divide an array into two sub-arrays, one smaller than the other, through comparison and exchange, and then recursively
