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<len(sortedA) and j<len(sortedB):
            if sortedA[i]<sortedB[j]:
                returnList.append(sortedA[i])
                i+=1
            else:
                returnList.append(sortedB[j])
                j+=1
                countInter+=len(sortedA)-i
        elif i<len(sortedA):
            returnList.append(sortedA[i])
            i+=1
        elif j<len(sortedB):
            returnList.append(sortedB[j])
            j+=1
            
    return (countA+countB+countInter,returnList)

f=open('IntegerArray.txt','r')
listAll=[]
for line in f.readlines():
    listAll.append(int(line))
f.close()

print listAll
countAll,sortedAll=countInversion(listAll)
print countAll#,sortedAll

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

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

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值