IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> Python知识库 -> Python实现基本排序 -> 正文阅读

[Python知识库]Python实现基本排序

快速排序 VS 归并排序

区别:归并从最小的子列表排序再合并;快排从大列表按基准点分为子列表


1.?快速排序

基本思想:

i.? ?选取基准点拆分成2个子列表,小于基准点放在左边列表,大于则右边列表;

ii.? 每个子列表重复 i 过程;

iii. 结束点,子列表元素个数少于2

import random
import numpy as np


# 递归实现快速排序
def swap(aim_list, middle, right):
    tem = aim_list[middle]
    aim_list[middle] = aim_list[right]
    aim_list[right] = tem
    return aim_list


def partion(aim_list, left, right):
    """分割为子列表,返回边界点"""
    middle = (left+right)//2
    middle_value = aim_list[middle]
    swap(aim_list, middle, right) # 基准点放在最右端
    boundary = left # 边界点从最左边开始

    for index in range(left, right):
        if aim_list[index] < middle_value:
            swap(aim_list, boundary, index)
            boundary += 1
    swap(aim_list, boundary, right) # 扫描结束时,基准点值最小,再放回中间

    return boundary


def quick_sort_helper(aim_list, left, right):
    # 临界点
    if left < right:
        boundary = partion(aim_list, left, right)
        quick_sort_helper(aim_list, left, boundary-1)
        quick_sort_helper(aim_list, boundary+1, right)


def quick_sort(aim_list):
    return quick_sort_helper(aim_list, 0, len(aim_list)-1)


def generate_list(size):
    aim_list = []
    for i in range(size):
        aim_list.append(random.randint(1,100))

    return aim_list


if __name__ == "__main__":
    # aim_list = generate_list(20)
    aim_list = np.random.randint(100, size=20)
    set_format = ''.join(['*']*40)
    print("%s before sort %s" % (set_format, set_format))
    print(aim_list)
    print("%s after sort %s" % (set_format, set_format))
    quick_sort(aim_list)
    print(aim_list)

?输出:

****************************** before sort ******************************
[52 34 93 23 99 19 86 66 60 40 98 46 84 48 29 40 69 50 38 30]
****************************** after sort ******************************
[19 23 29 30 34 38 40 40 46 48 50 52 60 66 69 84 86 93 98 99]

2. 归并排序

基本思想:

i.? ?选取中间位置,拆分成2个子列表,并分别递归排序;

ii.? 当子列表不能划分时停止。

import random
import numpy as np

# 递归实现归并排序
def merge(aim_list, tmp_list, low, middle, high):
    """将2个已排序的子列表进行合并"""
    # i1为左列表的初始位置;i2为右列表的初始位置
    i1 = low
    i2 = middle+1
    for i in range(low, high+1):
        # 确定右列表比左列表小的边界 eg: [1,2] merge [4,5]
        if i1 > middle:
            tmp_list[i] = aim_list[i2]
            i2 += 1
        # 确定右列表比左列表小的边界 eg: [4,5] merge [1,2]
        elif i2 > high:
            tmp_list[i] = aim_list[i1]
        # 比较左后两个子列表,左<右,则tmp=左
        elif aim_list[i1] < aim_list[i2]:
            tmp_list[i] = aim_list[i1]
            i1 += 1
        else:
            tmp_list[i] = aim_list[i2]
            i2 += 1
    for i in range(low, high+1):
        aim_list[i] = tmp_list[i]


def merge_sort_helper(aim_list, tmp_list, low, high):
    """划分子列表"""
    if low < high:
        middle = (low+high)//2
        merge_sort_helper(aim_list, tmp_list, low, middle)
        merge_sort_helper(aim_list, tmp_list, middle+1, high)
        merge(aim_list, tmp_list, low, middle, high)


def merge_sort(aim_list):
    tmp_list = list([None for i in range(len(aim_list))])
    return merge_sort_helper(aim_list, tmp_list, 0, len(aim_list)-1)


def generate_list(size):
    aim_list = []
    for i in range(size):
        aim_list.append(random.randint(1,100))

    return aim_list


if __name__ == "__main__":
    # aim_list = generate_list(20)
    aim_list = np.random.randint(100, size=20)
    set_format = ''.join(['*']*30)
    print("%s before sort %s" % (set_format, set_format))
    print(aim_list)
    print("%s after sort %s" % (set_format, set_format))
    merge_sort(aim_list)
    print(aim_list)
    

输出:

****************************** before sort ******************************
[66 38  9 59 52 49 20 53  8 16 28 46 58 26 71  5 96 81 16 96]
****************************** after sort ******************************
[ 5  8  9 16 16 20 20 20 26 28 38 38 38 38 46 58 71 81 96 96]


参考书籍:《?数据结构(Python语言描述)

  Python知识库 最新文章
Python中String模块
【Python】 14-CVS文件操作
python的panda库读写文件
使用Nordic的nrf52840实现蓝牙DFU过程
【Python学习记录】numpy数组用法整理
Python学习笔记
python字符串和列表
python如何从txt文件中解析出有效的数据
Python编程从入门到实践自学/3.1-3.2
python变量
上一篇文章      下一篇文章      查看所有文章
加:2021-09-20 15:45:02  更:2021-09-20 15:45:32 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/15 15:30:24-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码