Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

README.md

十大经典排序算法

要求全部可以手写(手写:白板+白纸+电脑.text)

尤其是:快排 堆 归并 冒泡

  • o(n^2)

    • 冒泡(稳定)

    • 插入(稳定)

    • 选择(不稳定)

    • 希尔(不稳定)

  • o(nlogn)

    • 归并(稳定)

    • 快排(不稳定)

    • 堆(不稳定)

  • o(n)

    • 计数(稳定)

    • 基数(稳定)

    • 桶(稳定)

拓跋排序

除了十大经典排序外,拓跋排序也是至关重要的。