python实现希尔排序算法,python希尔算法,希尔排序(Shell S
python实现希尔排序算法,python希尔算法,希尔排序(Shell S
希尔排序(Shell Sort)是插入排序的一种。是针对直接插入排序算法的改进。该方法又称缩小增量排序,因DL.Shell于1959年提出而得名。
def shellSort(items): inc = len(items) / 2 while inc: for i in xrange(len(items)): j = i temp = items[i] while j >= inc and items[j-inc] > temp: items[j] = items[j - inc] j -= inc items[j] = temp inc = inc/2 if inc/2 else (0 if inc==1 else 1)a = [35, -8, 11, 1, 68, 0, 3];shellSort(a)print a # [-8, 0, 1, 3, 11, 35, 68]
相关内容
- python 读取系统环境变量,python环境变量,#!/usr/bin/e
- python property使用示例,pythonproperty,假设类的某属性,你
- python使用smtplib发邮件(带附件)代码,pythonsmtplib,简单
- python实现带参数的decorator,pythondecorator,python的decor
- 导出邮箱里的联系人:支持Gmail,126,网易,搜狐,H
- python 把文件夹压缩成tar,pythontar,import tarfi
- python控制shell执行时间,若超时则强行推出,pythonshel
- python登录Discuz!类型论坛的通用代码,pythondiscuz,[Python
- 使用python杀死进程,python杀死进程,使用python脚本根据
- python实现的线程池,python实现线程池,python实现的线程池
评论关闭