博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
BucketSort in Python
阅读量:5932 次
发布时间:2019-06-19

本文共 453 字,大约阅读时间需要 1 分钟。

hot3.png

def MyBucketSort(a): #桶排序# a = [0,1) b = [[]] * 10 result = [0]*len(a) k=1 for i in range(len(a)): b[int(10*a[i])] = b[int(10*a[i])] + [a[i]] for i in range(len(b)): MyInsertSort(b[i]) for i in range(10): temp = b.pop() if temp: for j in range(len(temp)): result[-k] = temp.pop() k=k+1 return result

转载于:https://my.oschina.net/dongdong2012/blog/112313

你可能感兴趣的文章
异常处理 课后作业2
查看>>
[DT] 数据结构术语中英文对照
查看>>
进程中内存地址空间的划分
查看>>
让sublime text2 支持中文路径的文件
查看>>
Objective-C 类,函数调用
查看>>
Linux常用命令
查看>>
golang fmt.printf()
查看>>
获取本周周一日期
查看>>
静态网站使用不蒜子显示浏览量
查看>>
将cocostudio配置到我们自己的Cocos2d-x开发环境中
查看>>
MonoTouch之根据经度纬度绘制线条
查看>>
win7卸载IE11
查看>>
python 中的字符和字符串
查看>>
广度遍历
查看>>
ecshop常用的修改内容
查看>>
对称的二叉树
查看>>
编译器的原理
查看>>
【解决】Windows Mobile 6 Professional SDK Refresh.msi 在xp上一直卡死
查看>>
C#Winform限制Textbox只能输入数字
查看>>
There is no getter for property named 'id' in 'class java.lang.Integer'
查看>>