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

插入排序

时间:2014-05-07 16:15:39      阅读:225      评论:0      收藏:0      [点我收藏+]

标签:blog   class   code   java   int   2014   


public class Sort {
	

	static void insertSort(int a[], int n) {
		for (int i = 1; i < n; i++) {
			if (a[i] < a[i - 1]) {
				int temp = a[i];
				int k = i - 1;
				while (k >= 0 && a[k] > temp) {
					a[k + 1] = a[k];
					k--;
				}
				a[k + 1] = temp;
			}
		}
	}

	public static void main(String[] args) {
		int a[] = { 3, 2, 5, 7, 8, 9, 4, 1, 0, 4, 6 };
		insertSort(a,  a.length );
		for (int i : a) {
			System.out.print(i + " ");
		}
	}
}

插入排序,布布扣,bubuko.com

插入排序

标签:blog   class   code   java   int   2014   

原文地址:http://blog.csdn.net/hackcoder/article/details/25193311

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