package hello;
/**
* @Package: hello
* @ClassName: Reversesort
* @Author: Qiao Wenjun
* @CreateTime: 2020/8/9 17:11
* @Description: Invert sorting
*/
public class Reversesort {
public static void main(String[] args) {
//Create an array
int[]array = {10,20,30,40,50,60};
//Create an object of the inverted sorting class
Reversesort sorter = new Reversesort();
//Call the method of sorting objects and invert the array
sorter.sort(array);
}
private void sort(int[] array) {
System.out.println("Original content of the array");
//Output array elements before sorting
showArray(array);
int temp;
int len = array.length;
for(int i = 0; i < len/2;i++){
temp = array[i];
array[i]=array[len-1-i];
array[len-1-i] = temp;
}
System.out.println("Array inverted content:");
//Output sorted array elements
showArray(array);
}
private void showArray(int[] array) {
//Transfer the array
for(int i : array){
//Output the value of each array element
System.out.print("\t" + i);
}
System.out.println();
}
}