mergesort in python

def mergesort(List):
    """ input : List, an integer list
        output : an sorted integer list
    """
    n = len(List)
    if n == 0 or n==1:
        return List
    first = mergesort(List[:n/2])
    second =  mergesort(List[n/2:])
    i=0
    j=0
    output = []
    while True:
        if first[i]<second[j]:
            output.append(first[i])
            i += 1
        else:
            output.append(second[j])
            j += 1
        if i >= len(first):
            output += second[j:]
                
            break
        if j >= len(second):
            output += first[i:]
                
            break
        
    return output

全部评论

相关推荐

fanyc07:现在还实习嘛 不应该春招了嘛
点赞 评论 收藏
分享
03-04 19:02
云南大学 Java
Yki_:没挂,只是没人捞,该干啥干啥,等着就好了
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客企业服务