java数组排序示例(冒泡排序、快速排序、希尔排序、选择排序)

java中在运用数组进行排序功能时,一般有四种方法:快速排序法、冒泡法、选择排序法、插入排序法(希尔排序(Shell Sort)是插入排序的一种),下面是一些示例,需要的朋友可以参考下

快速排序法主要是运用了Arrays中的一个方法Arrays.sort()实现。

冒泡法是运用遍历数组进行比较,通过不断的比较将最小值或者最大值一个一个的遍历出来。

选择排序法是将数组的第一个数据作为最大或者最小的值,然后通过比较循环,输出有序的数组。

插入排序是选择一个数组中的数据,通过不断的插入比较最后进行排序。

复制代码 代码如下:

package com.firewolf.sort;

public class MySort {

 /**
  * @param args
  */
 public static void main(String[] args) {
  int array[] = {45,32,54,12,43,65,11,3,43,6,33,90,44,1,178};
  MySort mySort = new MySort();
  mySort.insertSort(array);
  System.out.print("插入排序结果 :  ");
  mySort.printArray(array);
  System.out.println();
  mySort.bubbleSort(array);
  System.out.print("冒泡排序结果 :  ");
  mySort.printArray(array);
  mySort.qsort(array);
  System.out.println();
  System.out.print("快速排序结果 :  ");
  mySort.printArray(array);
  mySort.shellSort(array);
  System.out.println();
  System.out.print("希尔排序结果 :  ");
  mySort.printArray(array);
  mySort.selectSort(array);
  System.out.println();
  System.out.print("选择排序结果 :  ");
  mySort.printArray(array);
 }

 /**
  * 直接插入排序
  * 基本思想:在要排序的一组数中,假设前面(n-1)[n>=2] 个数已经是排好顺序的,现在要把第n个数插到前面的有序数中,使得这n个数也是排好顺序的。如此反复循环,直到全部排好顺序
  */
 public void insertSort(int[] array){
  int temp=0; 
     for(int i=1;i        int j=i-1; 
        temp=array[i]; 
        for(;j>=0&&temp         array[j+1]=array[j];                       //将大于temp的值整体后移一个单位 
        } 
        array[j+1]=temp; 
     }
 }

 /**
  * 冒泡排序
  * 基本思想:在要排序的一组数中,对当前还未排好序的范围内的全部数,自上而下对相邻的两个数依次进行比较和调整,让较大的数往下沉,较小的往上冒。即:每当两相邻的数比较后发现它们的排序与排序要求相反时,就将它们互换。
  */
 public void bubbleSort(int[] array) {
     int temp;
     for(int i=0;i       for(int j=0;j         if(array[j]>array[j+1]){
           temp=array[j];
           array[j]=array[j+1];
           array[j+1]=temp;
         }
       }
     }
    }

 /**
  * 快速排序
  * 基本思想:选择一个基准元素,通常选择第一个元素或者最后一个元素,通过一趟扫描,将待排序列分成两部分,一部分比基准元素小,一部分大于等于基准元素,此时基准元素在其排好序后的正确位置,然后再用同样的方法递归地排序划分的两部分。
  * @param array
  */
 public void qsort(int array[]){
  if(array.length>1){
   _qsort(array,0,array.length-1);
  }
 }
 /**
  * 一趟快速排序
  * @param array
  */
 private void _qsort(int[] array,int low,int high){
  if(low    int middle = getMiddle(array, low, high);
   _qsort(array,low,middle-1);
   _qsort(array, middle+1, high);
  }
 }
 /**
  * 得到中间值
  */
 private int getMiddle(int[] array,int low,int high){
  int tmp = array[low];
  while(low    while(low = tmp)
    high--;
   array[low] = array[high];
   while(low    low++;
   array[high] = array[low];
  }
  array[low] = tmp;
  return low;
 }

 /**
  * 简单选择排序
  * 基本思想:在要排序的一组数中,选出最小的一个数与第一个位置的数交换;然后在剩下的数当中再找最小的与第二个位置的数交换,如此循环到倒数第二个数和最后一个数比较为止。
  * @param array
  */
 public void selectSort(int[] array){
  int position=0; 
        for(int i=0;i
            int j=i+1; 
            position=i; 
            int temp=array[i]; 
            for(;j            if(array[j]                temp=array[j]; 
                position=j; 
            } 
            } 
            array[position]=array[i]; 
            array[i]=temp; 
        }
 }

 /**
  * 希尔排序(最小增量排序)
  * 基本思想:算法先将要排序的一组数按某个增量d(n/2,n为要排序数的个数)分成若干组,每组中记录的下标相差d.对每组中全部元素进行直接插入排序,然后再用一个较小的增量(d/2)对它进行分组,在每组中再进行直接插入排序。当增量减到1时,进行直接插入排序后,排序完成。
  * @param array
  */
 public  void shellSort(int[] array){ 
     double d1=array.length; 
     int temp=0; 
     while(true){ 
         d1= Math.ceil(d1/2); 
         int d=(int) d1; 
         for(int x=0;x             for(int i=x+d;i                 int j=i-d; 
                 temp=array[i]; 
                 for(;j>=0&&temp                  array[j+d]=array[j]; 
                 } 
                 array[j+d]=temp; 
             } 
         } 
         if(d==1) 
             break; 
     } 
 } 

 /**
  * 打印数组中的所有元素
  */

 public void printArray(int[] array){
  for (int i = 0; i    System.out.print(array[i]+" ");
  }
 }
}

以上就是java数组排序示例(冒泡排序、快速排序、希尔排序、选择排序)的详细内容,更多请关注0133技术站其它相关文章!

赞(0) 打赏
未经允许不得转载:0133技术站首页 » Java