iOS 数组排序

Posted 爱生活爱代码

tags:

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

降序:(从大到小)

-(void)sortArrayDatas{
    [array_datas sortUsingComparator:^NSComparisonResult(id  _Nonnull obj1, id  _Nonnull obj2) {
        RainfallStations *station_One = obj1;
        RainfallStations *station_Two = obj2;
        
        double totalRain_one = station_One.totalRain;
        double totalRain_two = station_Two.totalRain;
        if (totalRain_one>totalRain_two) {
            return NSOrderedAscending;
        }
        else if (totalRain_one < totalRain_two){
            return NSOrderedDescending;
        }else{
            return NSOrderedSame;
        }
    }];
}

 

升序:(从小到大)

-(void)sortArrayDatas{
    [array_datas sortUsingComparator:^NSComparisonResult(id  _Nonnull obj1, id  _Nonnull obj2) {
        RainfallStations *station_One = obj1;
        RainfallStations *station_Two = obj2;
        
        double totalRain_one = station_One.totalRain;
        double totalRain_two = station_Two.totalRain;
        if (totalRain_one>totalRain_two) {
            return NSOrderedDescending;
        }
        else if (totalRain_one < totalRain_two){
            return NSOrderedAscending;
        }else{
            return NSOrderedSame;
        }
    }];
}

 

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

iOS小技能:对象数组按照日期分组和排序,使用块代码实现数组排序和乱序。

LeetCode810. 黑板异或游戏/455. 分发饼干/剑指Offer 53 - I. 在排序数组中查找数字 I/53 - II. 0~n-1中缺失的数字/54. 二叉搜索树的第k大节点(代码片段

以下代码片段的时间复杂度是多少?

快速排序-递归实现

java.io.ByteArrayInputStream

对数组中的字符串进行排序,使其稀疏