python递归排序组合_Python - 合并排序递归算法

I was trying to implement this pseudocode for the recursive merge sort algorithm:

**procedure** *mergesort*(L = a1, a2,…,an )

**if** n > 1 **then**

m := ⌊n/2⌋

L1 := a1, a2,…,am

L2 := am+1, am+2,…,an

L := merge(mergesort(L1), mergesort(L2 ))

{L is now sorted into elements in increasing order}

**procedure** *merge*(L1, L2 :sorted lists)

L := empty list

**while** L1 and L2 are both nonempty

remove smaller of first elements of L1 and L2 from its list;

put at the right end of L

**if** this removal makes one list empty

**then** remove all elements from the other list and append them to L

return L {L is the merged list with the elements in increasing order}

The purpose its to write it on python, so far I have coded all of it but it does not run properly, everytime I run it prints: function merge at 0x0000000002024730. Here is the python code:

#Recursive Merge Sort

import math

ent = [10000, 967, 87, 91, 117, 819, 403, 597, 1201, 12090]

def merge(L1, L2):

while len(L1) and len(L2) != 0:

L.append(L1[0])

L1.remove(L1[0])

L.append(L2[0])

L2.remove(L2[0])

if len(L1) == 0:

L.append(L2)

elif len(L2) == 0:

L.append(L1)

return L

def mergesort(ent):

if len(ent)>1:

m=math.floor(len(ent)/2)

L1 = []

L2 = []

L1=L1+ent[:m]

L2=L2+ent[m+1:len(ent)]

L=merge(mergesort(L1),mergesort(L2))

print(merge)

I have some doubts about how the functions are supossed to work recursively together, which is why I think I cant solve and code it right. Any help or suggestions?

解决方案

You're not executing merge, but printing the function itself. Do this:

print(merge())

However, your logic is a bit messed up, you don't even have a recursive function there.

Take a look at this question

Also, i think what you need is to call mergesort:

def mergesort(ent):

if len(ent)>1:

m=math.floor(len(ent)/2)

L1 = ent[:m]

L2 = ent[m+1:len(ent)]

L=merge(mergesort(L1),mergesort(L2))

return L

And execute it:

print(mergesort(ent))

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值