java 数组从低到高排序

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java 数组从低到高排序相关的知识,希望对你有一定的参考价值。

/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package BASICJAVA;

import java.util.Scanner;

/**
 *
 * @author ABIR
 */
public class Array_Sorting_Low_To_High {
    public static void main(String[]args){
        Scanner abir =new Scanner(System.in);
        int[] number=new int[5];
        for (int i = 0; i < number.length; i++) {
            System.out.println("Enter your "+(i+1)+" number");
            number[i]=abir.nextInt();
        }
        for (int i = 0; i < number.length; i++) {
            //saving the number as minimum
            int min=number[i];
            int minindex=i;
            for (int j = i+1; j < number.length; j++) {
                if(number[j]<min){
                    min=number[j];
                    minindex=j;
                }
            }
            int backup=number[i];
            number[i]=number[minindex];
            number[minindex]=backup;
        }
        System.out.println("After Sorting");
        for (int i = 0; i < number.length; i++) {
            System.out.println(number[i]);
        }
    }
}

以上是关于java 数组从低到高排序的主要内容,如果未能解决你的问题,请参考以下文章

数组排序

php数组排序

php 数组函数

PHP中的排序函数sortasortrsortkrsortksort区别分析

PHP中的排序函数sortasortrsortkrsortksort区别分析

PHP中的排序函数sortasortrsortkrsortksort区别分析