黑马程序员技术交流社区

标题: 排序方式大揭秘 [打印本页]

作者: Ф福@ 御    时间: 2014-5-24 14:42
标题: 排序方式大揭秘
  1. package com.itheima;



  2. public class sort {
  3. /**
  4.   * @param args
  5.   */
  6. public static void main(String[] args) {
  7.   int array[] = {45,32,54,12,43,65,11,3,43,6,33,90,44,1,178};
  8.   sort mySort = new sort();
  9.   mySort.insertSort(array);
  10.   System.out.print("插入排序结果 :  ");
  11.   mySort.printArray(array);
  12.   System.out.println();
  13.   mySort.bubbleSort(array);
  14.   System.out.print("冒泡排序结果 :  ");
  15.   mySort.printArray(array);
  16.   mySort.qsort(array);
  17.   System.out.println();
  18.   System.out.print("快速排序结果 :  ");
  19.   mySort.printArray(array);
  20.   mySort.shellSort(array);
  21.   System.out.println();
  22.   System.out.print("希尔排序结果 :  ");
  23.   mySort.printArray(array);
  24.   mySort.selectSort(array);
  25.   System.out.println();
  26.   System.out.print("选择排序结果 :  ");
  27.   mySort.printArray(array);
  28. }

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

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

  60. /**
  61.   * 快速排序
  62.   * 基本思想:选择一个基准元素,通常选择第一个元素或者最后一个元素,通过一趟扫描,将待排序列分成两部分,一部分比基准元素小,一部分大于等于基准元素,此时基准元素在其排好序后的正确位置,然后再用同样的方法递归地排序划分的两部分。
  63.   * @param array
  64.   */
  65. public void qsort(int array[]){
  66.   if(array.length>1){
  67.    _qsort(array,0,array.length-1);
  68.   }
  69. }
  70. /**
  71.   * 一趟快速排序
  72.   * @param array
  73.   */
  74. private void _qsort(int[] array,int low,int high){
  75.   if(low < high){
  76.    int middle = getMiddle(array, low, high);
  77.    _qsort(array,low,middle-1);
  78.    _qsort(array, middle+1, high);
  79.   }
  80. }
  81. /**
  82.   * 得到中间值
  83.   */
  84. private int getMiddle(int[] array,int low,int high){
  85.   int tmp = array[low];
  86.   while(low < high){
  87.    while(low < high && array[high] >= tmp)
  88.     high--;
  89.    array[low] = array[high];
  90.    while(low<high && array[low]<=tmp)
  91.     low++;
  92.    array[high] = array[low];
  93.   }
  94.   array[low] = tmp;
  95.   return low;
  96. }

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

  105.             int j=i+1;  
  106.             position=i;  
  107.             int temp=array[i];  
  108.             for(;j<array.length;j++){  
  109.             if(array[j]<temp){  
  110.                 temp=array[j];  
  111.                 position=j;  
  112.             }  
  113.             }  
  114.             array[position]=array[i];  
  115.             array[i]=temp;  
  116.         }
  117. }

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

  143. /**
  144.   * 打印数组中的所有元素
  145.   */

  146. public void printArray(int[] array){
  147.   for (int i = 0; i < array.length; i++) {
  148.    System.out.print(array[i]+" ");
  149.   }
  150. }
  151. }
复制代码


作者: felixzr    时间: 2014-6-14 00:54
满全面的,赞一个
作者: MasMajesty    时间: 2014-6-15 00:26
这么多的排序方法啊,来学习了!




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2