冒泡排序

// 冒牌排序
- (void)bubblesSortWithArray:(NSMutableArray *)arr {
    
    for (NSInteger i = 0; i < arr.count; i ++) {
        
        for (NSInteger j = 0; j < arr.count - i - 1; j ++) {
            // 正序反序更换大小于号就行了
            if ([arr[j] intValue] > [arr[j + 1] intValue]) {
                
                [arr exchangeObjectAtIndex:j withObjectAtIndex:j+1];
            }
        }
    }
}

你可能感兴趣的:(冒泡排序)