JavaScript,快速排序
web前端-js教程
本文实例讲述了JavaScript实现快速排序的方法。分享给大家供大家参考。具体实现方法如下:andriod 源码下载,vscode怎么设置显示字间距,ubuntu安全维护,tomcat 虑拟目录,室内有爬虫,php 去格式,宣城seo官网优化费用lzw
function quickSort(input) { if (input.length <= 1) return input; var pivot = Math.floor(Math.random()*input.length) var less = [], greater=[]; var pivotElem = input.splice(pivot,1) for (x in input) { if (input[x] <= pivotElem[0]) less.push(input[x]) else greater.push(input[x]) } return [].concat(quickSort(less),pivotElem,quickSort(greater)); } input = [] inputSize = 1000 highestInputValue = 100 for (i=0;i<inputSize;i++) { input.push(Math.floor(Math.random()*highestInputValue)) } document.writeln(quickSort(input))
挣钱的源码,ubuntu怎安装ftp,爬虫系统环境部署,js 数组 php,贵州seo工具lzw