`
water84222
  • 浏览: 375197 次
  • 性别: Icon_minigender_1
  • 来自: 大连
社区版块
存档分类
最新评论

各种排序算法java实现

阅读更多
原文地址 http://blog.csdn.net/lschou520/archive/2008/10/29/3176422.aspx
插入排序:
 
  1. package  org.rut.util.algorithm.support;
  2. import  org.rut.util.algorithm.SortUtil;
  3. public   class  InsertSort  implements  SortUtil.Sort{
  4.      /* (non-Javadoc)
  5.      * @see org.rut.util.algorithm.SortUtil.Sort#sort(int[])
  6.      */
  7.      public   void  sort( int [] data) {
  8.          int  temp;
  9.          for ( int  i= 1 ;i<data.length;i++){
  10.              for ( int  j=i;(j> 0 )&&(data[j]<data[j- 1 ]);j--){
  11.                 SortUtil.swap(data,j,j- 1 );
  12.             }
  13.         }        
  14.     }
  15. }
冒泡排序:
 
  1. package  org.rut.util.algorithm.support;
  2. import  org.rut.util.algorithm.SortUtil;
  3. public   class  BubbleSort  implements  SortUtil.Sort{
  4.      /* (non-Javadoc)
  5.      * @see org.rut.util.algorithm.SortUtil.Sort#sort(int[])
  6.      */
  7.      public   void  sort( int [] data) {
  8.          int  temp;
  9.          for ( int  i= 0 ;i<data.length;i++){
  10.              for ( int  j=data.length- 1 ;j>i;j--){
  11.                  if (data[j]<data[j- 1 ]){
  12.                     SortUtil.swap(data,j,j- 1 );
  13.                 }
  14.             }
  15.         }
  16.     }
  17. }
选择排序:
  1. package  org.rut.util.algorithm.support;
  2. import  org.rut.util.algorithm.SortUtil;
  3. public   class  SelectionSort  implements  SortUtil.Sort {
  4.      /*
  5.      * (non-Javadoc)
  6.      * 
  7.      * @see org.rut.util.algorithm.SortUtil.Sort#sort(int[])
  8.      */
  9.      public   void  sort( int [] data) {
  10.          int  temp;
  11.          for  ( int  i =  0 ; i < data.length; i++) {
  12.              int  lowIndex = i;
  13.              for  ( int  j = data.length -  1 ; j > i; j--) {
  14.                  if  (data[j] < data[lowIndex]) {
  15.                     lowIndex = j;
  16.                 }
  17.             }
  18.             SortUtil.swap(data,i,lowIndex);
  19.         }
  20.     }
  21. }
Shell排序:
  1. package  org.rut.util.algorithm.support;
  2. import  org.rut.util.algorithm.SortUtil;
  3. public   class  ShellSort  implements  SortUtil.Sort{
  4.      /* (non-Javadoc)
  5.      * @see org.rut.util.algorithm.SortUtil.Sort#sort(int[])
  6.      */
  7.      public   void  sort( int [] data) {
  8.          for ( int  i=data.length/ 2 ;i> 2 ;i/= 2 ){
  9.              for ( int  j= 0 ;j<i;j++){
  10.                 insertSort(data,j,i);
  11.             }
  12.         }
  13.         insertSort(data, 0 , 1 );
  14.     }
  15.      /**
  16.      * @param data
  17.      * @param j
  18.      * @param i
  19.      */
  20.      private   void  insertSort( int [] data,  int  start,  int  inc) {
  21.          int  temp;
  22.          for ( int  i=start+inc;i<data.length;i+=inc){
  23.              for ( int  j=i;(j>=inc)&&(data[j]<data[j-inc]);j-=inc){
  24.                 SortUtil.swap(data,j,j-inc);
  25.             }
  26.         }
  27.     }
  28. }
快速排序:
  1. package  org.rut.util.algorithm.support;
  2. import  org.rut.util.algorithm.SortUtil;
  3. public   class  QuickSort  implements  SortUtil.Sort{
  4.      /* (non-Javadoc)
  5.      * @see org.rut.util.algorithm.SortUtil.Sort#sort(int[])
  6.      */
  7.      public   void  sort( int [] data) {
  8.         quickSort(data, 0 ,data.length- 1 );        
  9.     }
  10.      private   void  quickSort( int [] data, int  i, int  j){
  11.          int  pivotIndex=(i+j)/ 2 ;
  12.          //swap
  13.         SortUtil.swap(data,pivotIndex,j);
  14.         
  15.          int  k=partition(data,i- 1 ,j,data[j]);
  16.         SortUtil.swap(data,k,j);
  17.          if ((k-i)> 1 ) quickSort(data,i,k- 1 );
  18.          if ((j-k)> 1 ) quickSort(data,k+ 1 ,j);
  19.         
  20.     }
  21.      /**
  22.      * @param data
  23.      * @param i
  24.      * @param j
  25.      * @return
  26.      */
  27.      private   int  partition( int [] data,  int  l,  int  r, int  pivot) {
  28.          do {
  29.             while (data[++l]<pivot);
  30.             while ((r!= 0 )&&data[--r]>pivot);
  31.            SortUtil.swap(data,l,r);
  32.         }
  33.          while (l<r);
  34.         SortUtil.swap(data,l,r);        
  35.          return  l;
  36.     }
  37. }
改进后的快速排序:
  1. package  org.rut.util.algorithm.support;
  2. import  org.rut.util.algorithm.SortUtil;
  3. public   class  ImprovedQuickSort  implements  SortUtil.Sort {
  4.      private   static   int  MAX_STACK_SIZE= 4096 ;
  5.      private   static   int  THRESHOLD= 10 ;
  6.      /* (non-Javadoc)
  7.      * @see org.rut.util.algorithm.SortUtil.Sort#sort(int[])
  8.      */
  9.      public   void  sort( int [] data) {
  10.          int [] stack= new   int [MAX_STACK_SIZE];
  11.         
  12.          int  top=- 1 ;
  13.          int  pivot;
  14.          int  pivotIndex,l,r;
  15.         
  16.         stack[++top]= 0 ;
  17.         stack[++top]=data.length- 1 ;
  18.         
  19.          while (top> 0 ){
  20.              int  j=stack[top--];
  21.              int  i=stack[top--];
  22.             
  23.             pivotIndex=(i+j)/ 2 ;
  24.             pivot=data[pivotIndex];
  25.             
  26.             SortUtil.swap(data,pivotIndex,j);
  27.             
  28.              //partition
  29.             l=i- 1 ;
  30.             r=j;
  31.              do {
  32.                  while (data[++l]<pivot);
  33.                  while ((r!= 0 )&&(data[--r]>pivot));
  34.                 SortUtil.swap(data,l,r);
  35.             }
  36.              while (l<r);
  37.             SortUtil.swap(data,l,r);
  38.             SortUtil.swap(data,l,j);
  39.             
  40.              if ((l-i)>THRESHOLD){
  41.                 stack[++top]=i;
  42.                 stack[++top]=l- 1 ;
  43.             }
  44.              if ((j-l)>THRESHOLD){
  45.                 stack[++top]=l+ 1 ;
  46.                 stack[++top]=j;
  47.             }
  48.             
  49.         }
  50.          //new InsertSort().sort(data);
  51.         insertSort(data);
  52.     }
  53.      /**
  54.      * @param data
  55.      */
  56.      private   void  insertSort( int [] data) {
  57.          int  temp;
  58.          for ( int  i= 1 ;i<data.length;i++){
  59.              for ( int  j=i;(j> 0 )&&(data[j]<data[j- 1 ]);j--){
  60.                 SortUtil.swap(data,j,j- 1 );
  61.             }
  62.         }       
  63.     }
  64. }
归并排序:
  1. package  org.rut.util.algorithm.support;
  2. import  org.rut.util.algorithm.SortUtil;
  3. public   class  MergeSort  implements  SortUtil.Sort{
  4.      /* (non-Javadoc)
  5.      * @see org.rut.util.algorithm.SortUtil.Sort#sort(int[])
  6.      */
  7.      public   void  sort( int [] data) {
  8.          int [] temp= new   int [data.length];
  9.         mergeSort(data,temp, 0 ,data.length- 1 );
  10.     }
  11.     
  12.      private   void  mergeSort( int [] data, int [] temp, int  l, int  r){
  13.          int  mid=(l+r)/ 2 ;
  14.          if (l==r)  return  ;
  15.         mergeSort(data,temp,l,mid);
  16.         mergeSort(data,temp,mid+ 1 ,r);
  17.          for ( int  i=l;i<=r;i++){
  18.             temp[i]=data[i];
  19.         }
  20.          int  i1=l;
  21.          int  i2=mid+ 1 ;
  22.          for ( int  cur=l;cur<=r;cur++){
  23.              if (i1==mid+ 1 )
  24.                 data[cur]=temp[i2++];
  25.              else   if (i2>r)
  26.                 data[cur]=temp[i1++];
  27.              else   if (temp[i1]<temp[i2])
  28.                 data[cur]=temp[i1++];
  29.              else
  30.                 data[cur]=temp[i2++];            
  31.         }
  32.     }
  33. }
改进后的归并排序:
 
  1. package  org.rut.util.algorithm.support;
  2. import  org.rut.util.algorithm.SortUtil;
  3. public   class  ImprovedMergeSort  implements  SortUtil.Sort {
  4.      private   static   final   int  THRESHOLD =  10 ;
  5.      /*
  6.      * (non-Javadoc)
  7.      * 
  8.      * @see org.rut.util.algorithm.SortUtil.Sort#sort(int[])
  9.      */
  10.      public   void  sort( int [] data) {
  11.          int [] temp= new   int [data.length];
  12.         mergeSort(data,temp, 0 ,data.length- 1 );
  13.     }
  14.      private   void  mergeSort( int [] data,  int [] temp,  int  l,  int  r) {
  15.          int  i, j, k;
  16.          int  mid = (l + r) /  2 ;
  17.          if  (l == r)
  18.              return ;
  19.          if  ((mid - l) >= THRESHOLD)
  20.             mergeSort(data, temp, l, mid);
  21.          else
  22.             insertSort(data, l, mid - l +  1 );
  23.          if  ((r - mid) > THRESHOLD)
  24.             mergeSort(data, temp, mid +  1 , r);
  25.          else
  26.             insertSort(data, mid +  1 , r - mid);
  27.          for  (i = l; i <= mid; i++) {
  28.             temp[i] = data[i];
  29.         }
  30.          for  (j =  1 ; j <= r - mid; j++) {
  31.             temp[r - j +  1 ] = data[j + mid];
  32.         }
  33.          int  a = temp[l];
  34.          int  b = temp[r];
  35.          for  (i = l, j = r, k = l; k <= r; k++) {
  36.              if  (a < b) {
  37.                 data[k] = temp[i++];
  38.                 a = temp[i];
  39.             }  else  {
  40.                 data[k] = temp[j--];
  41.                 b = temp[j];
  42.             }
  43.         }
  44.     }
  45.      /**
  46.      * @param data
  47.      * @param l
  48.      * @param i
  49.      */
  50.      private   void  insertSort( int [] data,  int  start,  int  len) {
  51.          for ( int  i=start+ 1 ;i<start+len;i++){
  52.              for ( int  j=i;(j>start) && data[j]<data[j- 1 ];j--){
  53.                 SortUtil.swap(data,j,j- 1 );
  54.             }
  55.         }
  56.     }
  57. }
堆排序:
  1. package  org.rut.util.algorithm.support;
  2. import  org.rut.util.algorithm.SortUtil;
  3. public   class  HeapSort  implements  SortUtil.Sort{
  4.      /* (non-Javadoc)
  5.      * @see org.rut.util.algorithm.SortUtil.Sort#sort(int[])
  6.      */
  7.      public   void  sort( int [] data) {
  8.         MaxHeap h= new  MaxHeap();
  9.         h.init(data);
  10.          for ( int  i= 0 ;i<data.length;i++)
  11.             h.remove();
  12.         System.arraycopy(h.queue, 1 ,data, 0 ,data.length);
  13.     }
  14.       private   static   class  MaxHeap{
  15.          
  16.         
  17.          void  init( int [] data){
  18.              this .queue= new   int [data.length+ 1 ];
  19.              for ( int  i= 0 ;i<data.length;i++){
  20.                 queue[++size]=data[i];
  21.                 fixUp(size);
  22.             }
  23.         }
  24.          
  25.          private   int  size= 0 ;
  26.          private   int [] queue;
  27.                 
  28.          public   int  get() {
  29.              return  queue[ 1 ];
  30.         }
  31.          public   void  remove() {
  32.             SortUtil.swap(queue, 1 ,size--);
  33.             fixDown( 1 );
  34.         }
  35.          //fixdown
  36.          private   void  fixDown( int  k) {
  37.              int  j;
  38.              while  ((j = k <<  1 ) <= size) {
  39.                  if  (j < size && queue[j]<queue[j+ 1 ])
  40.                     j++; 
  41.                  if  (queue[k]>queue[j])  //不用交换
  42.                      break ;
  43.                 SortUtil.swap(queue,j,k);
  44.                 k = j;
  45.             }
  46.         }
  47.          private   void  fixUp( int  k) {
  48.              while  (k >  1 ) {
  49.                  int  j = k >>  1 ;
  50.                  if  (queue[j]>queue[k])
  51.                      break ;
  52.                 SortUtil.swap(queue,j,k);
  53.                 k = j;
  54.             }
  55.         }
  56.     }
  57. }
SortUtil:
  1. package  org.rut.util.algorithm;
  2. import  org.rut.util.algorithm.support.BubbleSort;
  3. import  org.rut.util.algorithm.support.HeapSort;
  4. import  org.rut.util.algorithm.support.ImprovedMergeSort;
  5. import  org.rut.util.algorithm.support.ImprovedQuickSort;
  6. import  org.rut.util.algorithm.support.InsertSort;
  7. import  org.rut.util.algorithm.support.MergeSort;
  8. import  org.rut.util.algorithm.support.QuickSort;
  9. import  org.rut.util.algorithm.support.SelectionSort;
  10. import  org.rut.util.algorithm.support.ShellSort;
  11. public   class  SortUtil {
  12.      public   final   static   int  INSERT =  1 ;
  13.      public   final   static   int  BUBBLE =  2 ;
  14.      public   final   static   int  SELECTION =  3 ;
  15.      public   final   static   int  SHELL =  4 ;
  16.      public   final   static   int  QUICK =  5 ;
  17.      public   final   static   int  IMPROVED_QUICK =  6 ;
  18.      public   final   static   int  MERGE =  7 ;
  19.      public   final   static   int  IMPROVED_MERGE =  8 ;
  20.      public   final   static   int  HEAP =  9 ;
  21.      public   static   void  sort( int [] data) {
  22.         sort(data, IMPROVED_QUICK);
  23.     }
  24.      private   static  String[] name={
  25.              "insert" , "bubble" , "selection" , "shell" , "quick" , "improved_quick" , "merge" , "improved_merge" , "heap"
  26.     };
  27.     
  28.      private   static  Sort[] impl= new  Sort[]{
  29.              new  InsertSort(),
  30.              new  BubbleSort(),
  31.              new  SelectionSort(),
  32.              new  ShellSort(),
  33.              new  QuickSort(),
  34.              new  ImprovedQuickSort(),
  35.              new  MergeSort(),
  36.              new  ImprovedMergeSort(),
  37.              new  HeapSort()
  38.     };
  39.      public   static  String toString( int  algorithm){
  40.          return  name[algorithm- 1 ];
  41.     }
  42.     
  43.      public   static   void  sort( int [] data,  int  algorithm) {
  44.         impl[algorithm- 1 ].sort(data);
  45.     }
  46.      public   static   interface  Sort {
  47.          public   void  sort( int [] data);
  48.     }
  49.      public   static   void  swap( int [] data,  int  i,  int  j) {
  50.          int  temp = data[i];
  51.         data[i] = data[j];
  52.         data[j] = temp;
  53.     }
  54. }
分享到:
评论

相关推荐

    iOS版微信抢红包Tweak.zip小程序

    iOS版微信抢红包Tweak.zip小程序

    毕业设计&课设_篮球爱好者网站,含前后台管理功能及多种篮球相关内容展示.zip

    该资源内项目源码是个人的课程设计、毕业设计,代码都测试ok,都是运行成功后才上传资源,答辩评审平均分达到96分,放心下载使用! ## 项目备注 1、该资源内项目代码都经过严格测试运行成功才上传的,请放心下载使用! 2、本项目适合计算机相关专业(如计科、人工智能、通信工程、自动化、电子信息等)的在校学生、老师或者企业员工下载学习,也适合小白学习进阶,当然也可作为毕设项目、课程设计、作业、项目初期立项演示等。 3、如果基础还行,也可在此代码基础上进行修改,以实现其他功能,也可用于毕设、课设、作业等。 下载后请首先打开README.md文件(如有),仅供学习参考, 切勿用于商业用途。

    基于springboot社区停车信息管理系统.zip

    基于springboot社区停车信息管理系统.zip

    基于springboot南皮站化验室管理系统源码数据库文档.zip

    基于springboot南皮站化验室管理系统源码数据库文档.zip

    重磅,更新!!!上市公司全要素生产率TFP数据及测算方法(OL、FE、LP、OP、GMM)(2000-2023年)

    ## 数据指标说明 全要素生产率(TFP)也可以称之为系统生产率。指生产单位(主要为企业)作为系统中的各个要素的综合生产率,以区别于要素生产率(如技术生产率)。测算公式为:全要素生产率=产出总量/全部资源投入量。 数据测算:包含OL、FE、LP、OP、GMM共五种TFP测算方法!数据结果包括excel和dta格式,其中重要指标包括证券代码,固定资产净额,营业总收入,营业收入,营业成本,销售费用,管理费用,财务费用,购建固定资产无形资产和其他长期资产支付的现金,支付给职工以及为职工支付的现金,员工人数,折旧摊销,行业代码,上市日期,AB股交叉码,退市日期,年末是否ST或PT等变量指标分析。文件包括计算方法说明及原始数据和代码。 数据名称:上市公司全要素生产率TFP数据及测算方法(OL、FE、LP、OP、GMM) 数据年份:2000-2023年 数据指标:证券代码、year、TFP_OLS、TFP_FE、TFP_LP1、TFP_OP、TFP_OPacf、TFP_GMM

    多种编程语言下算法实现资源汇总

    内容概要:本文详细总结了多种编程语言下常用的算法实现资源,涵盖Python、C++、Java等流行编程语言及其相关的开源平台、在线课程和权威书籍。对于每种语言而言,均提供了具体资源列表,包括开源项目、标准库支持、在线课程及专业书籍推荐。 适合人群:适用于所有希望深入研究并提高特定编程语言算法能力的学习者,无论是编程新手还是有一定经验的技术人员。 使用场景及目标:帮助开发者快速定位到合适的算法学习资料,无论是出于个人兴趣自学、面试准备或是实际工作中遇到的具体算法问题,都能找到合适的解决方案。 其他说明:文中提及多个在线学习平台和社区网站,不仅限于某一特定语言,对于跨学科或多元化技能培养也具有很高的参考价值。

    基于springboot的交通旅游订票系统源码数据库文档.zip

    基于springboot的交通旅游订票系统源码数据库文档.zip

    GO语言教程:基础知识与并发编程

    内容概要:本文档是一份详细的GO语言教程,涵盖了Go语言的基础语法、数据类型、控制结构、函数、结构体、接口以及并发编程等多个方面。主要内容包括Go语言的基本概念和历史背景、环境配置、基本语法(如变量、数据类型、控制结构)、函数定义与调用、高级特性(如闭包、可变参数)、自定义数据类型(如结构体、接口)以及并发编程(如goroutine、channel、select)等内容。每部分内容都附有具体的代码示例,帮助读者理解和掌握相关知识点。 适合人群:具备一定编程基础的开发者,尤其是希望深入学习和应用Go语言的技术人员。 使用场景及目标:①初学者通过本教程快速入门Go语言;②有一定经验的开发者系统复习和完善Go语言知识;③实际项目开发中利用Go语言解决高性能、高并发的编程问题。 阅读建议:本文档全面介绍了Go语言的各项基础知识和技术细节,建议按章节顺序逐步学习,通过动手实践代码示例加深理解。对于复杂的概念和技术点,可以通过查阅更多资料或进行深入研究来巩固知识。

    time_series_at_a_point.ipynb

    GEE训练教程

    memcached笔记资料

    memcached笔记资料,配套视频:https://www.bilibili.com/list/474327672?sid=4486766&spm_id_from=333.999.0.0&desc=1

    基于springboot校内跑腿业务系统源码数据库文档.zip

    基于springboot校内跑腿业务系统源码数据库文档.zip

    计算机控制光感自动窗帘控制系统设计.doc

    计算机控制光感自动窗帘控制系统设计.doc

    基于SpringBoot的校园服务系统源码数据库文档.zip

    基于SpringBoot的校园服务系统源码数据库文档.zip

    基于SpringBoot+Vue的美容店信息管理系统源码数据库文档.zip

    基于SpringBoot+Vue的美容店信息管理系统源码数据库文档.zip

    基于springboot程序设计基础课程辅助教学系统源码数据库文档.zip

    基于springboot程序设计基础课程辅助教学系统源码数据库文档.zip

    原生JS实现斗地主小游戏源码.zip

    这是一个原生的JS网页版斗地主小游戏,代码注释全。带有斗地主游戏基本的地主、选牌、提示、出牌、倒计时等功能。简单好玩,欢迎下载

    基于springboot亚运会志愿者管理系统源码数据库文档.zip

    基于springboot亚运会志愿者管理系统源码数据库文档.zip

    毕业设计&课设_含多功能的远程控制工具集(已停维护),含命令行、文件管理、桌面功能.zip

    该资源内项目源码是个人的课程设计、毕业设计,代码都测试ok,都是运行成功后才上传资源,答辩评审平均分达到96分,放心下载使用! ## 项目备注 1、该资源内项目代码都经过严格测试运行成功才上传的,请放心下载使用! 2、本项目适合计算机相关专业(如计科、人工智能、通信工程、自动化、电子信息等)的在校学生、老师或者企业员工下载学习,也适合小白学习进阶,当然也可作为毕设项目、课程设计、作业、项目初期立项演示等。 3、如果基础还行,也可在此代码基础上进行修改,以实现其他功能,也可用于毕设、课设、作业等。 下载后请首先打开README.md文件(如有),仅供学习参考, 切勿用于商业用途。

    Sen2_NDVI_Max.txt

    GEE训练教程——Landsat5、8和Sentinel-2、DEM和各2哦想指数下载

Global site tag (gtag.js) - Google Analytics