/*    Java Sort byte Array Example    This example shows how to sort a byte array using sort method of...

Sort byte Array Example

08:01 PASSOVE INCOME 0 Comments


                

  1. /*
  2.    Java Sort byte Array Example
  3.    This example shows how to sort a byte array using sort method of Arrays class of
  4.    java.util package.
  5. */
  6. import java.util.Arrays;
  7. public class SortByteArrayExample {
  8.   public static void main(String[] args) {
  9.    
  10.     //create byte array
  11.     byte[] b1 = new byte[]{3,2,5,4,1};
  12.    
  13.     //print original byte array
  14.     System.out.print("Original Array :\t ");
  15.     for(int index=0; index < b1.length ; index++)
  16.       System.out.print("  "  + b1[index]);
  17.    
  18.     /*
  19.      To sort java byte array use Arrays.sort() method of java.util package.
  20.      Sort method sorts byte array in ascending order and based on quicksort
  21.      algorithm.
  22.      There are two static sort methods available in java.util.Arrays class
  23.      to sort a byte array.
  24.     */
  25.    
  26.     //To sort full array use sort(byte[] b) method.
  27.     Arrays.sort(b1);
  28.    
  29.     //print sorted byte array
  30.     System.out.print("\nSorted byte array :\t ");
  31.     for(int index=0; index < b1.length ; index++)
  32.       System.out.print("  "  + b1[index]);
  33.      
  34.     /*
  35.       To sort partial byte array use
  36.       sort(byte[] b, int startIndex, int endIndex) method where startIndex is
  37.       inclusive and endIndex is exclusive
  38.     */
  39.    
  40.     byte[] b2 = new byte[]{5,2,3,1,4};
  41.     Arrays.sort(b2,1,4);
  42.    
  43.     //print sorted byte array
  44.     System.out.print("\nPartially Sorted byte array :\t ");
  45.     for(int index=0; index < b2.length ; index++)
  46.       System.out.print("  "  + b2[index]);
  47.   }
  48. }
  49. /*
  50. Output Would be
  51. Original Array :     3  2  5  4  1
  52. Sorted byte array :     1  2  3  4  5
  53. Partially Sorted byte array :     5  1  2  3  4
  54. */

0 comments: