数组:升序和降序
2021-03-18 03:26
标签:float space bool font png 编译过程 was mamicode ever 升序 //以下nums为数组 例如nums数组有5个元素,那么对其升序排序应该为sort(nums,nums+5); 1. JAVA的降序是Arrays.sort(nums,Collections.reverseOrder()),但由于此方法不支持基本类型(int,float,double,char等),所以在使用的时候要将int型转换为Integer,flaot为Float。 例如. 结果图: 2. C++则是用sort(nums,nums + 5,compare); 结果图: 数组:升序和降序 标签:float space bool font png 编译过程 was mamicode ever 原文地址:https://www.cnblogs.com/Charlo/p/13953870.html
降序
这里的Integer型转换为int型可以用Integer.valueOf(num)。public static void main(String args[]){
Integer[] nums = {2,3,1,4,5};
Arrays.sort(nums,Collections.reverseOrder());
int[] tmp = new int[nums.length];
for(int i = 0;i
#include
#include