iphone 冒泡排序

轉載自

http://www.devdiv.com/home.php?mod=space&uid=92724&do=blog&id=5793


NSMutableArray *p = [[NSMutableArray allocinitWithObjects:@"3",@"5",@"4",@"1",nil];

  for (int i = 0; i<[p count]; i++) 

{

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

   {

  int a = [[p objectAtIndex:i] intValue];

  NSLog(@"a = %d",a);

          int b = [[p objectAtIndex:j] intValue];

  NSLog(@"b = %d",b);

  NSLog(@"------");

  if (a > b)

  {

    [p replaceObjectAtIndex:i withObject:[NSString stringWithFormat:@"%d",b]];

            [p replaceObjectAtIndex:j withObject:[NSString stringWithFormat:@"%d",a]];

  }

for (int i = 0; i<[p count]; i++)

        {

   NSLog(@"%@",[p objectAtIndex:i]);

}

   }

}


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章