学习日志017--python的几种排序算法

冒泡排序

python 复制代码
def bubble_sort(alist):
    i = 0
    while i<len(alist):
        j=0
        while j<len(alist)-1:
            if alist[j]>alist[j+1]:
                alist[j],alist[j+1] = alist[j+1],alist[j]
            j+=1

        i+=1

l = [2,4,6,8,0,1,3,5,7,9]
bubble_sort(l)
print(l)

选择排序

python 复制代码
def select_sort(alist):
    i = 0
    while i<len(alist)-1:
        temp = i
        j=i+1
        while j<len(alist):
            if alist[temp]>alist[j]:
                temp = j
            j+=1
        if not temp == i:
            alist[i],alist[temp] = alist[temp],alist[i]
        i += 1
l = [6, 4, 5, 3, 8, 9, 2, 1, 7]
select_sort(l)
print(l)

直接排序

python 复制代码
def insert_sort(alist):
    i=1
    while i<len(alist):
        temp = alist[i]
        j = i
        while j>0 and alist[j - 1] > temp:
            alist[j] = alist[j-1]
            j-=1
        alist[j] = temp
        i+=1
l = [2,4,6,8,0,1,3,5,7,9]
insert_sort(l)
print(l)

快速排序

python 复制代码
def part(alist,l,r):
    p = alist[l]

    while l<r:
        while l<r and alist[r]>p:
            r-=1
        alist[l] = alist[r]

        while l<r and alist[l]<p:
            l+=1
        alist[r] = alist[l]
    alist[l] = p

    return l

def quick_sort(alist,l,r):
    if l<r:
        p_index = part(alist, l, r)
        print(alist)
        quick_sort(alist,l,p_index-1)
        quick_sort(alist,p_index+1,r)

l = [6, 4, 5, 3, 8, 9, 2, 1, 7]
n = len(l)-1
quick_sort(l,0,n)
print(l)

希尔排序

python 复制代码
def shell_sort(alist):
    n = len(alist)
    gap = n//2
    while gap>0:
        for i in range(gap,n):
            temp = alist[i]
            j = i
            while alist[j-gap] > temp and j >= gap:
                alist[j] = alist[j-gap]
                j -= gap
            alist[j] = temp

        gap = gap // 2
    return arr

arr = [6, 4, 5, 3, 8, 9, 2, 1, 7]
print("排序前:", arr)
sorted_arr = shell_sort(arr)
print("排序后:", sorted_arr)

xmind

相关推荐
一个响当当的名号4 分钟前
c++primer 个人学习总结-模板和泛型编程
开发语言·c++·学习
落羽的落羽4 分钟前
【C++】C++11的可变参数模板、emplace接口、类的新功能
开发语言·c++·学习
滴滴滴嘟嘟嘟.6 分钟前
Qt对话框与文件操作学习
开发语言·qt·学习
乱飞的秋天11 分钟前
IO学习
学习
悟能不能悟13 分钟前
if __name__=‘__main__‘的用处
python
Source.Liu24 分钟前
【Python基础】 15 Rust 与 Python 基本类型对比笔记
笔记·python·rust
前端世界25 分钟前
Python 正则表达式实战:用 Match 对象轻松解析拼接数据流
python·正则表达式·php
DreamNotOver1 小时前
基于Scikit-learn集成学习模型的情感分析研究与实现
python·scikit-learn·集成学习
Learn Beyond Limits1 小时前
Error metrics for skewed datasets|倾斜数据集的误差指标
大数据·人工智能·python·深度学习·机器学习·ai·吴恩达
半瓶榴莲奶^_^1 小时前
python基础案例-数据可视化
python·信息可视化·数据分析