希尔排序的时间复杂度是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);
	}
}


转载于:https://www.cnblogs.com/lcchuguo/p/5227619.html

Logo

开放原子开发者工作坊旨在鼓励更多人参与开源活动,与志同道合的开发者们相互交流开发经验、分享开发心得、获取前沿技术趋势。工作坊有多种形式的开发者活动,如meetup、训练营等,主打技术交流,干货满满,真诚地邀请各位开发者共同参与!

更多推荐