javascript sort descending
function sortEggsInNest(a, b) {
return a > b ? -1 : b > a ? 1 : 0;
}
javascript sort descending
function sortEggsInNest(a, b) {
return a > b ? -1 : b > a ? 1 : 0;
}
Sort Descending array
Array -- Sort Descending
Write a return method that can sort an int array in descending order without using the sort method of the Arrays class
Ex: int[] arr = {10,20,7, 8, 90};
arr = Sort(arr); ==> {90, 20, 10, 8, 7};
Solution 1:
public static void main(String[] args) {
ArrayList<Integer> arr = new ArrayList<Integer>(5);
arr.add(12);arr.add(4);arr.add(6);arr.add(8);arr.add(20);
System.out.println(findMin(arr));
public static int[] Sort(int[] a) {
ArrayList<Integer> list=new ArrayList<Integer>();
for(int each: a)
list.add(each);
for(int i=0; i < a.length; i++) {
a[i] = findMax(list);
list.remove(Integer.valueOf(a[i]));
}
return a;
}
public static int findMax(ArrayList<Integer> a) {
int max=Integer.MIN_VALUE;
for(int each: a)
max = Math.max(max, each);
return max;
}
Solution 2:
public static void main(String[] args) {
ArrayList<Integer> arr = new ArrayList<Integer>(5);
arr.add(12);arr.add(4);arr.add(6);arr.add(8);arr.add(20);
System.out.println(findMin(arr));
public static void SortingArrayDesc(int[] arr) {
ArrayList<Integer> list = new ArrayList();
for(int each: arr) {
list.add(each);
}
for (int i = 0; i < list.size(); i++) {
for (int j = 0; j < list.size(); j++) {
if (list.get(i) > list.get(j)) {
Integer temp = list.get(i);
list.set(i, list.get(j));
list.set(j, temp);
}
}
}
for(int i=0; i < list.size(); i++) {
arr[i] = list.get(i);
}
}
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