Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. public class Array{
  2.     public static void insertsort(int []list){
  3.         for(int i=1;i<list.length;i++){
  4.             int temp=list[i];
  5.             for(int j=i;j>0;j--){
  6.                 if(list[j-1]>temp){
  7.                     list[j]=list[j-1];
  8.                 }
  9.                 else{
  10.                     list[j]=temp;
  11.                     break;
  12.                 }
  13.             }
  14.  
  15.         }
  16.  
  17.     }
  18.     public static void selectionsort(int []list){
  19.         for(int i=0;i<list.length-1;i++){
  20.             int min=list[i];
  21.             int index=i;
  22.             for(int j=i;j<list.length;j++){
  23.                 if(list[j]<min){
  24.                     min=list[j];
  25.                     index=j;
  26.                 }
  27.             }
  28.             list[index]=list[i];
  29.             list[i]=min;
  30.         }
  31.  
  32.     }
  33.     public static void burblesort(int []list){
  34.         for(int i=0;i<list.length;i++){            
  35.             for(int j=0;j<list.length-1;j++){              
  36.                 if(list[j]>list[j+1]){
  37.                     int temp=list[j];
  38.                     list[j]=list[j+1];
  39.                     list[j+1]=temp;
  40.                 }
  41.             }
  42.         }
  43.  
  44.     }
  45. }