插值排序 Post author:张拓 Post published:2022年 12月 22日 Post category:排序算法/算法 Post comments:0评论 插值排序(interpolation sort)或称为直方图排序(histogram sort)。 是一种使用插值公式分… 继续阅读插值排序
插入排序 Post author:张拓 Post published:2022年 12月 22日 Post category:排序算法/算法 Post comments:0评论 插入排序(英语:Insertion Sort)是一种简单直观的排序算法。它的工作原理是通过构建有序序列,对于未排序数据,… 继续阅读插入排序
桶排序 Post author:张拓 Post published:2022年 12月 22日 Post category:排序算法/算法 Post comments:0评论 桶排序(Bucket sort)或所谓的箱排序,是一个排序算法,工作的原理是将数组分到有限数量的桶里。每个桶再个别排序(… 继续阅读桶排序
梳排序 Post author:张拓 Post published:2022年 12月 22日 Post category:排序算法/算法 Post comments:0评论 梳排序(Comb sort)是一种由Wlodzimierz Dobosiewicz于1980年所发明的不稳定排序算法,并… 继续阅读梳排序
鸡尾酒排序 Post author:张拓 Post published:2022年 12月 22日 Post category:排序算法/算法 Post comments:0评论 鸡尾酒排序,也就是定向冒泡排序,鸡尾酒搅拌排序,搅拌排序(也可以视作选择排序的一种变形),涟漪排序,来回排序或快乐小时排… 继续阅读鸡尾酒排序
冒泡排序 Post author:张拓 Post published:2022年 12月 6日 Post category:排序算法/算法 Post comments:0评论 冒泡排序(英语:Bubble Sort)又称为泡式排序,是一种简单的排序算法。它重复地走访过要排序的数列,一次比较两个元… 继续阅读冒泡排序
内省排序 Post author:张拓 Post published:2022年 12月 6日 Post category:排序算法/算法 Post comments:0评论 内省排序(英语:Introsort)是由David Musser在1997年设计的排序算法。这个排序算法首先从快速排序开… 继续阅读内省排序
偏排序 Post author:张拓 Post published:2022年 12月 6日 Post category:排序算法/算法 Post comments:0评论 在计算机科学里,偏排序是排序算法的一个放宽的变种。全排序返回的列表中,每个元素都按一定顺序出现,而偏排序返回的列表中,仅… 继续阅读偏排序
侏儒排序 Post author:张拓 Post published:2022年 12月 6日 Post category:排序算法/算法 Post comments:0评论 侏儒排序(英语:Gnome Sort)或愚人排序(英语:Stupid Sort)是一种排序算法,最初在2000年由伊朗计… 继续阅读侏儒排序
Timsort Post author:张拓 Post published:2022年 12月 6日 Post category:排序算法/算法 Post comments:0评论 Timsort 是一种混合稳定的排序算法,源自合并排序和插入排序,旨在较好地处理真实世界中各种各样的数据。它使用了 Pe… 继续阅读Timsort