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

快速排序非递归实现

时间:2018-10-14 13:47:08      阅读:176      评论:0      收藏:0      [点我收藏+]

标签:div   tar   start   style   快速排序   partition   递归   return   stack   

def quick_sort(arr):
    ‘‘‘‘‘
    模拟栈操作实现非递归的快速排序
    ‘‘‘
    if len(arr) < 2:
        return arr
    stack = []
    stack.append(len(arr)-1)
    stack.append(0)
    while stack:
        l = stack.pop()
        r = stack.pop()
        index = partition(arr, l, r)
        if l < index - 1:
            stack.append(index - 1)
            stack.append(l)
        if r > index + 1:
            stack.append(r)
            stack.append(index + 1)


def partition(arr, start, end):
    # 分区操作,返回基准线下标
    pivot = arr[start]
    while start < end:
        while start < end and arr[end] >= pivot:
            end -= 1
        arr[start] = arr[end]
        while start < end and arr[start] <= pivot:
            start += 1
        arr[end] = arr[start]
    # 此时start = end
    arr[start] = pivot
    return start

 

快速排序非递归实现

标签:div   tar   start   style   快速排序   partition   递归   return   stack   

原文地址:https://www.cnblogs.com/tsdblogs/p/9785440.html

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