码迷,mamicode.com
首页 > 编程语言 > 详细

归并排序-JAVA实现

时间:2017-11-19 12:35:49      阅读:208      评论:0      收藏:0      [点我收藏+]

标签:lock   i++   gen   输出   内存   复制   比较   pack   之间   

  1 package com.iloveu.xxx;
  2 
  3 public class MergeSort {
  4     
  5     static final int SIZE = 15;
  6     
  7     static void mergeOne(int a[],int b[],int n,int len)
  8     {
  9         int i,j,k,s,e;
 10         s=0;
 11         while(s+len<n){
 12             e = s+2*len-1;
 13             if(e>=n){//最后一段可能少于len个节点
 14                 e = n -1;
 15             }
 16             //相邻有序段合并
 17             k=s;
 18             i=s;
 19             j=s+len;
 20             while(i<s+len && j<=e){//如果两个有序表都未结束时,循环比较
 21                 if(a[i]<=a[j]){//如果较小的元素复制到数组b中
 22                     b[k++]=a[i++];
 23                 }else{
 24                     b[k++]=a[j++];
 25                 }
 26             }
 27             while(i<s+len){//未合并的部分复制到数组b中
 28                 b[k++]=a[i++];
 29             }
 30             while(j<=e){//未合并的部分复制到数组b中
 31                 b[k++]=a[j++];
 32                 
 33             }
 34             s=e+1;//下一对有序段中左段的开始下标
 35         }
 36         if(s<n){//将剩余的一个有序段从数组a中复制到数组b中
 37             for(;s<n;s++){
 38                 b[s] = a[s];
 39             }
 40             
 41         }
 42     }
 43     
 44     static void mergeSort(int a[],int n)//合并排序
 45     {
 46         int h,count,len,f;
 47         
 48         count = 0;//排序步骤
 49         len = 1;//有序序列的长度
 50         f = 0;//变量f作标志
 51         
 52         int[] p = new int[n];
 53         while(len<n){
 54             if(f==1){//交替在a和p之间合并
 55                 mergeOne(p,a,n,len);//p合并到a
 56             }else{
 57                 mergeOne(a,p,n,len);//a合并到p
 58             }
 59             len = len*2;//增加有序序列长度
 60             f=1-f;//使f值在0和1之间切换
 61             
 62             count++;
 63             System.out.printf("第"+count+"步排序结果:");//输出每步排序的结果
 64             for(h=0;h<SIZE;h++){
 65                 System.out.printf(" "+a[h]);
 66                 
 67             }
 68             System.out.printf("\n");
 69         }
 70         if(f==1){//如果进行了排序
 71             for(h=0;h<n;h++){//将内存p中的数据复制回数组a
 72                 a[h]=p[h];
 73             }
 74         }
 75     }
 76 
 77     public static void main(String[] args) {
 78         // TODO Auto-generated method stub
 79         int[] shuzu=new int[SIZE];
 80         int i;
 81         
 82         for(i=0;i<SIZE;i++){
 83             shuzu[i] = (int) (100+Math.random()*(100+1));//初始化数组
 84         }
 85         
 86         System.out.print("排序前的数组为:\n");//输出排序前的数组
 87         for(i=0;i<SIZE;i++){
 88             System.out.print(shuzu[i]+" ");
 89             }
 90             System.out.print("\n");
 91             
 92             mergeSort(shuzu,SIZE);//排序操作
 93             
 94             System.out.print("排序后的数组为:\n");
 95             for(i=0;i<SIZE;i++){
 96                 System.out.print(shuzu[i]+" ");//输出排序后的数组
 97                 try {
 98                     Thread.sleep(1000);
 99                 } catch (InterruptedException e) {
100                     // TODO Auto-generated catch block
101                     e.printStackTrace();
102                 }
103             }
104             System.out.print("\n");
105         }
106 
107 
108 }

 

package com.iloveu.xxx;
public class MergeSort {static final int SIZE = 15;static void mergeOne(int a[],int b[],int n,int len){int i,j,k,s,e;s=0;while(s+len<n){e = s+2*len-1;if(e>=n){//最后一段可能少于len个节点e = n -1;}//相邻有序段合并k=s;i=s;j=s+len;while(i<s+len && j<=e){//如果两个有序表都未结束时,循环比较if(a[i]<=a[j]){//如果较小的元素复制到数组b中b[k++]=a[i++];}else{b[k++]=a[j++];}}while(i<s+len){//未合并的部分复制到数组b中b[k++]=a[i++];}while(j<=e){//未合并的部分复制到数组b中b[k++]=a[j++];}s=e+1;//下一对有序段中左段的开始下标}if(s<n){//将剩余的一个有序段从数组a中复制到数组b中for(;s<n;s++){b[s] = a[s];}}}static void mergeSort(int a[],int n)//合并排序{int h,count,len,f;count = 0;//排序步骤len = 1;//有序序列的长度f = 0;//变量f作标志int[] p = new int[n];while(len<n){if(f==1){//交替在a和p之间合并mergeOne(p,a,n,len);//p合并到a}else{mergeOne(a,p,n,len);//a合并到p}len = len*2;//增加有序序列长度f=1-f;//使f值在0和1之间切换count++;System.out.printf("第"+count+"步排序结果:");//输出每步排序的结果for(h=0;h<SIZE;h++){System.out.printf(" "+a[h]);}System.out.printf("\n");}if(f==1){//如果进行了排序for(h=0;h<n;h++){//将内存p中的数据复制回数组aa[h]=p[h];}}}
public static void main(String[] args) {// TODO Auto-generated method stubint[] shuzu=new int[SIZE];int i;for(i=0;i<SIZE;i++){shuzu[i] = (int) (100+Math.random()*(100+1));//初始化数组}System.out.print("排序前的数组为:\n");//输出排序前的数组for(i=0;i<SIZE;i++){System.out.print(shuzu[i]+" ");}System.out.print("\n");mergeSort(shuzu,SIZE);//排序操作System.out.print("排序后的数组为:\n");for(i=0;i<SIZE;i++){System.out.print(shuzu[i]+" ");//输出排序后的数组try {Thread.sleep(1000);} catch (InterruptedException e) {// TODO Auto-generated catch blocke.printStackTrace();}}System.out.print("\n");}

}

 

归并排序-JAVA实现

标签:lock   i++   gen   输出   内存   复制   比较   pack   之间   

原文地址:http://www.cnblogs.com/haciont/p/7859364.html

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