码迷,mamicode.com
首页 > 编程语言 > 详细

Objective-C 选择排序

时间:2016-05-11 18:14:52      阅读:159      评论: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
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!