Skip to main content

Java Program for Sorting Of Array minimum to maximum WITHOUT USING SORTING method

Java Program for Sorting Of Array minimum to maximum WITHOUT USING SORTING method


package mobbiinfo.SortingOfArray;

public class SortingOfArray {

       public static void main(String[] args) {
              int s;
              int i[]={5,7,1,6,2,4};
              int j=i.length;
             
              for(int c=0;c<j;c++){
                     for(c=0;c<j-1;c++){
                           for(int k=0;k<j-c-1;k++){
                                                      if(i[k]>i[k+1])
                                                                    {
                                                                       s=i[k+1];
                                                                       i[k+1]=i[k];
                                                                       i[k]=s;
                                        
                                                                       }
                                                   }
                                       }
                    
                                 }
              for(int c=0;c<j;c++){
                     System.out.print(i[c]+" ");//After sorting of Array minimum to maximum
              }
             
              }
       }

Out put:





Comments

Popular posts from this blog

Applications of Insulating Materials

All electrical systems require some kind of insulation to prevent short circuits and leaking currents. 3 forms of insulators: solid, liquid and gaseous Performance of these insulators depend on the temperature Classification according to their temperature rating. Impregnation: Letting the solid material absorb some liquid With the advent of new materials, the classification has been modified by International Electrotechnical Commission: The transformer insulation: (a) conductor or turn-to-turn insulation, (b) coil-to-coil insulation, (c) low voltage coil-to-earth insulation, (d) high voltage coil-to-low voltage coil insulation, and (e) high voltage coil-to-ground insulation. Transformer oil -- provides the required dielectric strength and insulation -- cools the transformer by circulating itself through the core and the coil structure. -- should be in the liquid state over the complete operating range of temperatures between -40°C and+50°C. -- gets o...

Chicken Balls | చికెన్ ముట్టిలు