插入排序
Posted guligei
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了插入排序相关的知识,希望对你有一定的参考价值。
- (void)insertSort
{
NSMutableArray *dataArray = [NSMutableArray arrayWithObjects:@3,@4,@6,@2,@9,@7,@8, nil];
for (int i = 0; i<dataArray.count-1; i++) {
NSInteger j = i+1;
while (j>=1 && [dataArray[j-1]integerValue]<[dataArray[j]integerValue]) {
id obj = dataArray[j];
[dataArray replaceObjectAtIndex:j withObject:dataArray[j-1]];
[dataArray replaceObjectAtIndex:j-1 withObject:obj];
j--;
[AlgorithmSort printArray:dataArray];
}
}
[AlgorithmSort printArray:dataArray];
}
- (void)kInserSort:(NSMutableArray *)array{
array = [NSMutableArray arrayWithObjects:@3,@4,@6,@2,@9,@7,@8, nil];
for (int i = 0; i < array.count; i++) {
NSNumber *temp = array[i];
int j = i-1;
while (j >= 0 && [array[j] compare:temp] == NSOrderedDescending) {
[array replaceObjectAtIndex:j+1 withObject:array[j]];
j--;
}
[array replaceObjectAtIndex:j+1 withObject:temp];
NSLog(@"插入排序排序中:%@",array);
}
}
+ (void)printArray:(NSArray *)array
{
for(NSNumber *number in array) {
printf("%d ",[number intValue]);
}
printf("
");
}
以上是关于插入排序的主要内容,如果未能解决你的问题,请参考以下文章
代码片段使用复杂的 JavaScript 在 UIWebView 中插入 HTML?
将代码片段插入数据库并在 textarea 中以相同方式显示
初识Spring源码 -- doResolveDependency | findAutowireCandidates | @Order@Priority调用排序 | @Autowired注入(代码片段
初识Spring源码 -- doResolveDependency | findAutowireCandidates | @Order@Priority调用排序 | @Autowired注入(代码片段