首页 > 编程语言 > 详细

Objective-C 选择排序

时间:2016-05-11 18:12:45      阅读:260      评论:0      收藏:0      [点我收藏+]

NSMutableArray *sourceArray = [NSMutableArray arrayWithObjects:@(3), @(5), @(7), @(9), @(2), @(4), @(8), @(6), nil];

    //选择排序

    for (int i = 0; i < sourceArray.count - 1; i++)

    {

        for (int j = i+1; j < sourceArray.count; j++)

        {

            NSInteger baseIdx = i;

            NSInteger moveIdx = j;

            

            NSNumber* baseNum = [sourceArray objectAtIndex:baseIdx];

            NSNumber* moveNum = [sourceArray objectAtIndex:moveIdx];

            if (baseNum.intValue > moveNum.intValue)

            {

                [sourceArray exchangeObjectAtIndex:baseIdx withObjectAtIndex:moveIdx];

            }

        }

    }

  //验证结果

    [sourceArray enumerateObjectsUsingBlock:^(id  _Nonnull obj, NSUInteger idx, BOOL * _Nonnull stop) {

        NSLog(@"%d:%@", idx, obj);

    }];

Objective-C 选择排序

原文:http://www.cnblogs.com/piaoliuping/p/5482567.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!