Quicksort递归性

克鲁德斯

我正在尝试用python写一个quicksort函数,但是在实现方面却遇到了麻烦。我了解逻辑,但是我之前从未编写过递归函数。

我看过YouTube教程,但是它们使用的逻辑通常与我的逻辑不同。

由于他们是进行快速排序的几种方法,因此我将发表我的逻辑。我的逻辑如下:

  1. 枢轴是列表中随机选择的项目
  2. 轴将移动到列表中最右边的位置。
  3. 然后将列表中的每个项目与数据透视表进行比较,以查看其是否大于数据透视表。
  4. 大于枢轴的第一个项目被指定为FirstBigNumber。
  5. 然后再次遍历该列表。小于数据透视表交换位置的第一项具有FirstBigNumber,Swapped = True
  6. 然后找到一个新的FirstBigNumber
  7. 重复步骤4,5,6,直到达到枢轴。
  8. 与FirstBigNumber交换数据透视。
  9. 该列表应排序。

我的代码:

import random
List=[3,5,1,7,2,8]
pivot_pos=0
def getpivot(List):
    #Get pivot position
    pivot_pos=random.randint(0,len(List)-1)
    return pivot_pos

def quicksort(List,pivot_pos):
    #Calling Get Pivot function
    getpivot(List)
    print(List)
    #Obtain pivot
    pivot=List[pivot_pos]
    print("Pivot is ",pivot)
    #Swap pivot to right of list
    List[len(List)-1],List[pivot_pos]=List[pivot_pos],List[len(List)-1]
    Swapped=True
    print(List)
    #Loop through List
    for j in range(0,len(List)-1):
        print("Checking if",List[j],"is bigger than",pivot)
        #Marks first num larger than
        if List[j]>pivot and Swapped==True:
            #FirstBigNum stores the index of the First number bigger than pivot
            FirstBigNum=List[j]
            IndexOfBigNum=j
            print("BigNum is",FirstBigNum)
            #This new Big number has not been swapped
            Swapped=False
        for i in range(0,len(List)-1):
            if List[i]<pivot:
                    #Swap the index of smaller num with first big num
                    print("Swapped",List[i]," with ",List[IndexOfBigNum])
                    List[IndexOfBigNum],List[i]=List[i],List[IndexOfBigNum]
                    print(List)
                    Swapped=True
            elif List[i]<pivot:
                print("Pivot is bigger than",List[i])
                #If Value greater than pivot
                pass
            elif i == (len(List)-1):
                #We have reached the end of the List
                #So we need to swap the pivot with the FirstBigNum
                List[FirstBigNum],List[i]==List[i],List[FirstBigNum]
                print("Here")
                print(List)
            else:
                #Is equal to pivot
                pass

getpivot(List)
quicksort(List,pivot_pos)

我收到的输出是:

[5, 8, 7, 2, 1, 3] 

我应该得到的输出是:

[1, 2, 3, 5, 7, 8]   
维克

这是使用带有Lomuto分区的递归的Quicksort的标准实现。我包括了一个随机列出的主驱动程序,因此您可以对其进行测试:

import random


def quick_sort(a, l=0, r=None):
    # Recusrion requires a Base Case
    if r is None :
        r = len(a) - 1
    if l >= r :
        return 0
    # If the Base Case is not encountered then proceed to partion
    s = lomuto_partition(a, l, r)
    # call quicksort recursively
    quick_sort(a, l, s-1)
    quick_sort(a, s+1, r)
    return a


def lomuto_partition(a, l, r):
    p = a[l]
    s = l
    for i in range(l+1, r+1) :
        if a[i] < p :
            s += 1
            a[s], a[i] = a[i], a[s]
    a[l], a[s] = a[s], a[l]
    return s


def random_seq(n=10, lo=0, hi=100):
    seq = []
    for i in range(n):
        seq.append(random.randint(lo, hi))
    return seq


if __name__ == '__main__' :
    n = 16
    print('n:', n)

    a = random_seq(n)
    print("Unsorted Random List: ", a)

我希望这有帮助

本文收集自互联网,转载请注明来源。

如有侵权,请联系 [email protected] 删除。

编辑于
0

我来说两句

0 条评论
登录 后参与评论

相关文章