美文网首页
冒泡排序

冒泡排序

作者: 万忍 | 来源:发表于2017-02-22 20:50 被阅读2次

    今天去面试被坑了,然后这个发一下吧。

    NSMutableArray * array = [NSMutableArray arrayWithObjects: @"1",@"8",@"2",@"7",@"2",@"5",@"9",nil];

    //选择

    for (int  i =0; i<[array count]-1; i++) {

    for (int j = i+1; j<[array count]; j++) {

    if ([array[i] intValue]>[array[j] intValue]) {

    //交换

    [array exchangeObjectAtIndex:i withObjectAtIndex:j];

    }

    }

    }

    NSLog(@"%@",array);

    相关文章

      网友评论

          本文标题:冒泡排序

          本文链接:https://www.haomeiwen.com/subject/gaamwttx.html