java sort 2d array
Arrays.sort(myArr, (a, b) -> a[0] - b[0]);
java sort 2d array
Arrays.sort(myArr, (a, b) -> a[0] - b[0]);
sort array java
Here’s the java program to sort an array using Arrays.sort() method.
import java.util.Arrays;
public class JavaArraySortMethod
{
public static void main(String[] args)
{
String[] strGiven = {"Great Barrier Reef", "Paris", "borabora", "Florence","tokyo", "Cusco"};
Arrays.sort(strGiven);
System.out.println("Output(case sensitive) : " + Arrays.toString(strGiven));
}
}
how to sort integer array in java
int countOfArray = 5;
int num [] = new int[counfOfArray];
int num[] = [8 , 5 , 9 , 3 , 4];
for (int i = 0; i < countOfArray; i++)
{
for (int j = i + 1; j < countOfArray; j++) {
if (num[i] > num[j])
{
temp = num[i];
num[i] = num[j];
num[j] = temp;
}
}
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us