devxlogo

Don’t Worry about Sorting

Don’t Worry about Sorting

It is possible to sort any type of array of elements, even if you don’t know a sorting algorithm.

First, pass an array variable to sort the method (which is a member of the Arrays class). This will automatically sort the all the elements in the array.

Here is the sample code:

 import java.util.*;public class sorting{	public static void main(String[] args) 	{		int numbers[] = {4,2,7,5,1,9,3,8,6};		String strings[] ={"rohan","basha","nagendra","raheem"};		Arrays.sort(numbers);		Arrays.sort(strings);		for(int i =0 ; I
See also  Professionalism Starts in Your Inbox: Keys to Presenting Your Best Self in Email
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist