码迷,mamicode.com
首页 > 其他好文 > 详细

【数据结构与算法】希尔排序

时间:2014-08-11 11:59:02      阅读:212      评论:0      收藏:0      [点我收藏+]

标签:数据结构   算法   希尔排序   

希尔排序的时间复杂度是O(n^1.3)~O(n^2),空间复杂度是O(1)。

代码如下:

/**
 * 源码名称: ShellSort.java 
 * 日期:2014-08-11 
 * 程序功能:希尔排序 
 * 版权:CopyRight@A2BGeek 
 * 作者:A2BGeek
 */
public class ShellSort {
	public void shellSort(int[] in) {
		int length = in.length;
		int span = length / 2;
		int i, j;
		while (span >= 1) {
			// Selection Sort begin
			for (i = span; i < length; i++) {
				int tmp = in[i];
				for (j = i - span; j >= 0 && tmp < in[j]; j -= span) {
					in[j + span] = in[j];
				}
				in[j + span] = tmp;
			}
			// Selection Sort end
			span /= 2;
			printArray(in);
		}
	}

	public void printArray(int[] in) {
		for (int i : in) {
			System.out.print(i + " ");
		}
		System.out.println();
	}

	public static void main(String[] args) {
		int[] testCase = { 1, 3, 4, 10, 2, 5, 6, 7, 9, 11 };
		ShellSort mShellSort = new ShellSort();
		mShellSort.printArray(testCase);
		mShellSort.shellSort(testCase);
		mShellSort.printArray(testCase);
	}
}


【数据结构与算法】希尔排序,布布扣,bubuko.com

【数据结构与算法】希尔排序

标签:数据结构   算法   希尔排序   

原文地址:http://blog.csdn.net/a2bgeek/article/details/38490031

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!