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

python 归并排序

时间:2019-12-12 13:07:54      阅读:87      评论:0      收藏:0      [点我收藏+]

标签:sts   print   pre   app   list   append   归并排序   middle   merge   

def merge(a, b):
    c = []
    h = j = 0
    while j < len(a) and h < len(b):
        if a[j] < b[h]:
            c.append(a[j])
            j += 1
        else:
            c.append(b[h])
            h += 1
    if j == len(a):
        for i in b[h:]:
            c.append(i)
    else:
        for i in a[j:]:
            c.append(i)
    return c

def merge_sort(lists):
    if len(lists) <= 1:
        return lists
    middle = len(lists) // 2
    left = merge_sort(lists[:middle])
    right = merge_sort(lists[middle:])
    return merge(left, right)

a = [4, 7, 7, 1, 2, 9]
print(merge_sort(a))

 

python 归并排序

标签:sts   print   pre   app   list   append   归并排序   middle   merge   

原文地址:https://www.cnblogs.com/hooo-1102/p/12028389.html

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