ios 冒泡排序
Posted 我也要改变世界
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ios 冒泡排序相关的知识,希望对你有一定的参考价值。
- (void)viewDidLoad { [super viewDidLoad]; NSMutableArray *numbers = [NSMutableArray arrayWithObjects:@"17",@"28",@"36",@"15",@"39", nil]; NSLog(@"排序前%@",numbers); for (int i = 0; i < 5 - 1; i++) { //比较的躺数 for (int j = 0; j < 5 - 1 - i; j++) { //比较的次数 if ([numbers[j] intValue] > [numbers[j + 1] intValue]) { //这里为升序排序 int temp = [numbers[j] intValue]; numbers[j] = numbers[j + 1]; //OC中的数组只能存储对象,所以这里转换成string对象 numbers[j + 1] = [NSString stringWithFormat:@"%d",temp]; } } } NSLog(@"排序后%@",numbers); }
以上是关于ios 冒泡排序的主要内容,如果未能解决你的问题,请参考以下文章