java的二分插入法_Java四种排序:冒泡,选择,插入,二分(折半插入)

四种排序:冒泡,选择,插入,二分(折半插入)

public class Test{

// public static void main(String[] args) {

// Test t=new Test();

public static void bubbleSort(int[] source){

// 交换类排序思想: 两两比较待排序的关键字,发现记录相反则交换,直到没有反序的记录。

for(int i = source.length - 1; i > 0; i--){

for(int j = 0; j < i; j++){

if(source[j] > source[j + 1]){

swap(source, j, j+1);

}

}

}

}

public static void selectSort(int[] source){

// 选择类排序思想:首先在未排序的序列中找到最小元素,存放到排序序列的起始位置,

// 然后再从剩余未排序的元素中找到下一个最小元素,放到已排序序列的末尾。

for (int i = 0; i < source.length; i++){

for (int j = i+1; j < source.length; j++){

if (source[j] > source[i]){

swap(source, i, j);

}

}

}

}

// 从第一个元素开始,该元素可以认为已经被元素

// 取出下一个元素,在已经拍序的元素中从后往前扫描,如果该元素大于新一个,则将该元素移到下一个

public static void insertSort(int[] source){

for (int i = 1; i < source.length; i++){

for (int j = i ; (j > 0) && (source[j] < source[j - 1]); j--){

swap(source, j, j-1);

}

}

}

public static void halfSort(int[] source){

// 二分查找(折半插入)排序思想: 对于第j个元素而言,前面j-1个元素已经有序。

//在有序的队列里面先折半查找出待插入的位置,再统一后移。最后插入要插入的元素。

int temp, low, high, mid;

for (int i =1; i<10; i++){

temp = source[i];

low = 0;

high = i-1;

while (low <= high){

mid = (low + high) / 2;

if (source[mid] > temp)

high = mid - 1;

else

low = mid + 1;

}

for (int j = i+1; j > high; j--){

source[j+1] = source[j];

}

source[high+1] = temp;

}

}

private static void swap(int[] source, int x, int y){

int temp = source[x];

source[x] = source[y];

source[y] = temp;

}

public static void main(String[] args){

int[] a = {4, 2, 1, 3, 4, 6, 7, 8, 0};

int i;

bubbleSort(a);

for (i = 0;i

System.out.printf("%d ", a[i]);

}

}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值