Algorithms Part 1-Question 1- the number of inversions-逆序数计算算法

def countInversion(arrayList):
    if len(arrayList)==1:
        return (0,arrayList)
    
    halfIndex=int(len(arrayList)/2.0)
    countA,sortedA=countInversion(arrayList[:halfIndex])
    countB,sortedB=countInversion(arrayList[halfIndex:])
    returnList=[]
    i=0
    j=0
    countInter=0
    
    for index in range(0,len(arrayList)):
        if i

合并两个子list计算inversions的时候,要注意是加上sortedA所有剩下的元素数量。

程序在windows下运行十分缓慢,大约20分钟过去还没有运行完毕,但在linux下不过一秒就运行结束。其中的原因有待推敲。

你可能感兴趣的:(Algorithms Part 1-Question 1- the number of inversions-逆序数计算算法)