码迷,mamicode.com
首页 > 编程语言 > 详细

js快速排序算法

时间:2020-03-23 09:17:05      阅读:67      评论:0      收藏:0      [点我收藏+]

标签:highlight   左移   end   rip   star   index   class   ++   join   

    // 快速排序算法:关键在于定义基准元素,头尾元素与基准元素对比,定义头尾元素下标,头小右移,头大停止,尾大左移,尾小停止,头大尾小元素交换
    function partition(arr, startIndex, endIndex) {
        var pivot = arr[startIndex];
        var left = startIndex;
        var right = endIndex;

        while (left != right) {
            while (left < right && arr[right] > pivot) {
                right--;
            }

            while (left < right && arr[left] <= pivot) {
                left++;
            }
            if (left < right) {
                var temp = arr[left];
                arr[left] = arr[right];
                arr[right] = temp;
            }
        }

        arr[startIndex] = arr[left];
        arr[left] = pivot;
        return left;
    }

    function quickSort(arr, startIndex, endIndex) {
        if (startIndex >= endIndex) {
            return;
        }

        var pivotIndex = partition(arr, startIndex, endIndex);
        quickSort(arr, startIndex, pivotIndex - 1);
        quickSort(arr, pivotIndex + 1, endIndex);
    }

    var Array = [4, 4, 6, 5, 3, 2, 8, 1];
    quickSort(Array, 0, Array.length - 1);
    console.log(Array.join(‘,‘));

  

js快速排序算法

标签:highlight   左移   end   rip   star   index   class   ++   join   

原文地址:https://www.cnblogs.com/peter-web/p/12550143.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!