Java Sort int Array Example

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

arrays

can u make a example that you will declare a random number and after that it will be sorted

please help me with this program

sort 6 numbers in descending order and determine if it is add or even

please help me with this program

create a program that input 10 numbers then determine if it is odd or even and the array elements.

Post new comment

To combat spam, please enter the code in the image.


Suggested Reading

Oracle Magazine
Contains technology strategy articles, sample code, tips, Oracle and partner news, how to articles for developers and DBAs, and more.
Cost: FREE

View/Subscribe
NASA Tech Briefs
Features exclusive reports of innovations developed by NASA and its industry partners/contractors that can be applied to develop new/improved products and solve engineering or manufacturing problems.
Cost: FREE

View/Subscribe
FierceBiotech IT
Is a free, easy to read weekly email service that brings must read biotech IT news to senior biotech, pharma, and IT executives.
Cost: FREE

View/Subscribe
Simply SQL
Simply SQL is a practical step-by-step guide to writing SQL.
Cost: FREE

View/Subscribe
Simply JavaScript
Packed with full-color examples, Simply JavaScript is all you need to start programming in JavaScript the right way.
Cost: FREE

View/Subscribe
PCMag.com's What's New Now
Lance Ulanoff, Editor in Chief of the PC Magazine Network, brings you this twice-weekly roundup of the latest top tech stories, the best new product reviews, plus special offers from Ziff Davis and its partners.
Cost: FREE

View/Subscribe

Could not find what you are looking for? Search Java Examples




Feel Tired? Read Jokes & Inspirational Stories, Play Games!