`
xiaomijsj
  • 浏览: 20889 次
  • 性别: Icon_minigender_1
  • 来自: 北京
最近访客 更多访客>>
社区版块
存档分类
最新评论

七大基本排序算法之希尔排序

 
阅读更多
import java.io.IOException;
import Input.InputString;

/**
 * 希尔排序
 * @author xiaomi
 * 2012.3.29
 */
public class ShellSort {
	public static void main(String[] args) throws IOException{
		String s = InputString.getString();
		String[] str = s.split(" ");
		int[] a = new int[str.length];
		for(int i = 0;i < str.length;i++){
			a[i] = Integer.parseInt(str[i]);
		}
		shellSort(a);
		for(int i = 0;i < a.length;i++){
			System.out.print(a[i]+" ");
		}
	}
	
	public static void shellSort(int[] a){
		for(int step = a.length/2;step > 0;step /= 2){
			for(int begin = 0;begin<a.length;begin++){
				for(int out = begin+step;out < a.length;out+=step){
					int in = out;
					int temp = a[out];
					while(in>=step&&a[in-step]>temp){
						a[in] = a[in-step];
						in-=step;
					}
					a[in] = temp;
				}
			}		
		}
	}
}

 

七大基本排序算法之冒泡排序

七大基本排序算法之选择排序

七大基本排序算法之插入排序

七大基本排序算法之希尔排序

七大基本排序算法之堆排序

七大基本排序算法之快速排序

七大基本排序算法之归并排序

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics