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

排序算法总结

时间:2017-08-17 14:23:30      阅读:230      评论:0      收藏:0      [点我收藏+]

标签:standard   []   循环数组   序列   循环   合并   stand   总结   等于   

1.插入排序

循环数组,从第二个开始,和前面的比较,找到它的位置插入他的指定位置

def insertSort(res):
    length = len(res)
    for i in range(1,length):
        temp = res[i]
        index = 0
        for j in range(i)[::-1]:
            if res[j]>temp:
                res[j+1] = res[j]
            else:
                index = j+1
                break
        res[index] = temp

    return res

  2.归并排序

选择一个基准值,把序列分成两个,在合并起来,递归完成,当最小序列长度小于等于1,直接返回该序列

def quickSort(res):
    if len(res)<=1:
        return res
    length = len(res)
    standard = res[0]
    lres = []
    rles = []
    for i in res:
        if i<standard:
            lres.append(i)
        elif i>standard:
            rles.append(i)
    return quickSort(lres)+[standard]+quickSort(rles)

  

排序算法总结

标签:standard   []   循环数组   序列   循环   合并   stand   总结   等于   

原文地址:http://www.cnblogs.com/cshunter/p/7380979.html

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