美文网首页
排序算法

排序算法

作者: wangminglang | 来源:发表于2018-02-24 16:12 被阅读4次

1、冒泡排序

//两两比较相邻的关键字,如果反序则交换,直到没有反序的记录为止
- (void)bubbleSort:(NSMutableArray *)array {
    for (int i = 0; i < array.count; i++) {
        for (int j = 0; j < array.count - i - 1; j++) {
            if ([array[j] intValue] > [array[j+1] intValue]) {
                int tmp = [array[j] intValue];
                array[j] = array[j+1];
                array[j+1] = [NSString stringWithFormat:@"%d", tmp];
            }
        }
    }
}

2、选择排序

//通过n-i次关键字间的比较,从n-i+1个记录中选出关键字最小的记录,并和第i(1≤i≤n)个记录交换之
- (void)simpleSelectionSortSort:(NSMutableArray *)array {
    for (int i = 0; i < array.count; i++) {
        for (int j = i+1; j < array.count; j++) {
            if ([array[i] intValue] > [array[j] intValue]) {
                int tmp = [array[i] intValue];
                array[i] = array[j];
                array[j] = [NSString stringWithFormat:@"%d", tmp];
            }
        }
    }
}

3、插入排序

//从第二个开始,取出该位置的值为临时值temp,位置为j,此时j的位置为空,叫做坑,然后temp依次往前比较,直到找到比temp小,把temp插入该的位置,完成一次循环
- (void)straightInsertionSort:(NSMutableArray *)array{
    for (int i = 1; i < array.count; i++) {
        int tmp = [array[i] intValue];
        int j = i;
        while (j > 0 && tmp < [array[j -1] intValue]) {
            array[j] = array[j -1];
            j--;
        }
        array[j] = [NSString stringWithFormat:@"%d", tmp];
    }
}

4、希尔排序

//希尔排序
- (void)shellSort:(NSMutableArray *)array {
    int gap = (int)array.count / 2;
    while (gap >= 1) {
        for (int i = gap; i < array.count; i++) {
            int tmp = [array[i] intValue];
            int j = i;
            while (j >= gap && tmp < [array[j-gap] intValue]) {
                array[j] = array[j-gap];
                j -= gap;
            }
            array[j] = [NSString stringWithFormat:@"%d", tmp];
        }
        gap = gap/2;
    }
}

5、堆排序

//堆排序
- (void)heapSort:(NSMutableArray *)array {
    NSInteger size = array.count;
    //将现在的待排序序列构建成一个大顶堆
    for (NSInteger i = size/2; i >= 0; i--) {
        [self createBiggerHeap:array withSize:size beIndex:i];
    }
    //逐步将每个最大值的根节点与末尾元素交换,并再调整其成为一个大顶堆
    while (size > 0) {
        [array exchangeObjectAtIndex:size - 1 withObjectAtIndex:0];
        size--;
        [self createBiggerHeap:array withSize:size beIndex:0];
    }
}
- (void)createBiggerHeap:(NSMutableArray *)array withSize:(NSInteger)size beIndex:(NSInteger)index {
    NSInteger leftChild = index*2 + 1;
    NSInteger rightChild = leftChild + 1;
    while (rightChild < size) {
        if ([array[index] intValue] >= [array[leftChild] intValue] && [array[index] intValue] >= [array[rightChild] intValue]) {
            return;
        }
        if ([array[leftChild] intValue] > [array[rightChild] intValue]) {
            [array exchangeObjectAtIndex:index withObjectAtIndex:leftChild];
            index = leftChild;
        } else {
            [array exchangeObjectAtIndex:index withObjectAtIndex:rightChild];
            index = rightChild;
        }
        leftChild = index*2 + 1;
        rightChild = leftChild + 1;
    }
    
    //只有左子树且左子树大于自己
    if (leftChild < size && [array[leftChild] intValue] > [array[index] intValue]) {
        [array exchangeObjectAtIndex:leftChild withObjectAtIndex:index];
    }
}

6、归并排序

- (NSArray *)mergeSort:(NSArray *)array {
    NSMutableArray *resultArr = [NSMutableArray array];
    for (NSNumber *num in array) {
        NSMutableArray *subArr = [NSMutableArray array];
        [subArr addObject:num];
        [resultArr addObject:subArr];
    }
    while (resultArr.count > 1) {
        NSInteger i = 0;
        while (i < resultArr.count -1) {
            resultArr[i] = [self mergeFirstArr:resultArr[i] withSecondArr:resultArr[i+1]];
            [resultArr removeObjectAtIndex:i+1];
            i++;
        }
    }
    return resultArr;
}

- (NSArray *)mergeFirstArr:(NSArray *)firstArr withSecondArr:(NSArray *)secondArr {
    NSMutableArray *resultArr = [NSMutableArray array];
    NSInteger firstIndex = 0;
    NSInteger secondIndex = 0;
    while (firstIndex < firstArr.count && secondIndex < secondArr.count) {
        if ([firstArr[firstIndex] integerValue] < [secondArr[secondIndex] integerValue]) {
            [resultArr addObject:firstArr[firstIndex]];
            firstIndex++;
        } else {
            [resultArr addObject:secondArr[secondIndex]];
            secondIndex++;
        }
    }
    while (firstIndex < firstArr.count) {
        [resultArr addObject:firstArr[firstIndex]];
        firstIndex++;
    }
    while (secondIndex < secondArr.count) {
        [resultArr addObject:secondArr[secondIndex]];
        secondIndex++;
    }
    return resultArr;
}

7、快速排序

//数组选第一个数,把比数小的放到数的左边,比数大的放到右边,重复操作
- (void)quickSortArray:(NSMutableArray *)array withLeftIndex:(NSInteger)leftIndex andRightIndex:(NSInteger)rightIndex {
    if (leftIndex >= rightIndex) {
        return;
    }
    NSInteger i = leftIndex;
    NSInteger j = rightIndex;
    NSInteger key = [array[i] integerValue];
    while (i < j) {
        while (i < j && [array[j] integerValue] >= key) {
            j--;
        }
        array[i] = array[j];
        while (i < j && [array[i] integerValue] <= key) {
            i++;
        }
        array[j] = array[i];
    }
    array[i] = [NSString stringWithFormat:@"%ld", (long)key];
    [self quickSortArray:array withLeftIndex:leftIndex andRightIndex:i-1];
    [self quickSortArray:array withLeftIndex:i+1 andRightIndex:rightIndex];
}

相关文章

  • java实现快速排序、归并排序、希尔排序、基数排序算法...

    快速排序算法 归并排序算法 希尔排序算法 基数排序算法

  • web开发需要知道的几个算法

    算法分类 快速排序算法 深度优先算法 广度优先算法 堆排序算法 归并排序算法

  • 算法学习(1)-排序算法

    八大排序算法九大排序算法再总结[经典排序算法][集锦][直观学习排序算法] 视觉直观感受若干常用排序算法 快速排序...

  • 经典排序算法总结

    经典排序算法集锦 冒泡法 排序算法入门之冒泡排序 排序算法入门之冒泡排序优化

  • 前端算法学习-第一篇

    冒泡排序算法 冒泡排序算法是最慢的排序算法之一,也是最容易实现的排序算法。之所以叫冒泡排序是因为使用这种算法排序时...

  • 七大排序算法之冒泡排序

    七大排序算法之冒泡排序 @(算法笔记)[排序算法, 冒泡排序, C++实现] 冒泡排序介绍 冒泡排序是七大排序算法...

  • 算法-选择排序

    算 法:选择排序算法时间复杂度: 选择排序算法概述 选择排序伪代码 选择排序实现 选择排序算法概述 排序算法有许...

  • 浅谈排序算法

    排序算法有很多种,今天先谈谈一些简单的排序算法。包括桶排序、冒泡排序和快速排序算法。后期总结各种排序算法。 桶排序...

  • 线性排序

    桶排序、计数排序、基数排序 一、线性排序算法介绍 1.线性排序算法包括桶排序、计数排序、基数排序。2.线性排序算法...

  • 算法4:插入排序和选择排序算法的比较

    排序算法列表电梯: 选择排序算法:详见 《算法4》2.1 - 选择排序算法(Selection Sort), Py...

网友评论

      本文标题:排序算法

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