zoukankan      html  css  js  c++  java
  • Object-C-Foundation-数组排序

    系统类型排序;

    NSArray *goodsNames =@[@"computer",@"iphone",@"ipad"];

    NSArray *sortedArray=[goodsNames sortedArrayUsingSelector:@selector(compare:)];

    自定义排序

    Person *p1=[[Person alloc]initWithName:@"tom" andAge:12 andCard:nil];

    Person *p2=[[Person alloc]initWithName:@"jack" andAge:23 andCard:nil];

    Person *p1=[[Person alloc]initWithName:@"maggie" andAge:11 andCard:nil];

     NSArry *personsArray=@[p1,p2,p3];

    在person类中定义一个comparePerson方法

    /***************************************************************

    -(NSComparisonResult)comparePerson:(Person *)person

    {

        NSNumber *age1=[[NSNumber alloc]initWithInt:self.age];

        NSnumber *age2=[[NSNumber alloc]initWithInt:person.age];

        NSComparisonResult result=[age1 compare:age2];

      if(result == NSOrderedSame)

        {

             result=[self.name compare:person.name];

        }

        return result;

    }

    /******************************************************************

    NSArray *personsArray=@[p1,p2,p3];

    NSArray *sortedArray=[personsArray sortedArrayUsingSelector:@selector(comparePerson:)];

    完成对personsArray进行排序

    使用block进行排序

    NSArray *sortedArray=[personsArray sortedArrayUsingComparator:^NSComparisonResult(id obj1,id obj2){

         Person *p1=(Person *)obj1;

         Person *p2=(Person *)obj2;

         NSNumber *age1=[[NSNumber alloc]initWithInt:self.age];

        NSnumber *age2=[[NSNumber alloc]initWithInt:person.age];

        NSComparisonResult result=[age1 compare:age2];

      if(result == NSOrderedSame)

        {

             result=[self.name compare:person.name];

        }

        return result;

    }

    复杂排序

    NSSortDescriptor

    NSSortDescriptor *sort1=[[NSSortDescriptor]initWithKey:@"name" ascending:YES];

    NSSortDescriptor *sort2=[[NSSortDescriptor]initWithKey:@"age" ascending:YES];

    NSArray *conditionsArray=@[sort1,sort2];

    NSArray *sortedArray =[personsArray sortedArrayUsingDescriptors:conditionsArray];

    /*******************

    NSSortDescriptor *sort1=[[NSSortDescriptor]initWithKey:@"name" ascending:YES];

    NSSortDescriptor *sort2=[[NSSortDescriptor]initWithKey:@"self.card.balance" ascending:YES];

  • 相关阅读:
    网络最大流算法—最高标号预流推进HLPP
    网络最大流算法—EK算法
    PROPAGATION_REQUIRED
    js左侧三级菜单导航代码
    Ubuntu上用premake编译GDAL
    2013数据结构课程设计之便利店选址(暴力枚举和随机函数两种做法)
    JAVA环境配置
    [K/3Cloud] 如何从被调用的动态表单界面返回数据
    document.getElementsByClassName在ie8及其以下浏览器的兼容性问题
    Java学习笔记51:数组转ArrayList和ArrayList转数组技巧
  • 原文地址:https://www.cnblogs.com/Opaser/p/4555066.html
Copyright © 2011-2022 走看看