【数据结构】选择排序

前端之家收集整理的这篇文章主要介绍了【数据结构】选择排序前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

对于一个int数组,请编写一个选择排序算法,对数组元素排序。
给定一个int数组A及数组的大小n,请返回排序后的数组。
测试样例:
[1,2,3,5,3],6
[1,5]

class SelectionSort {
public:

    void swap(int * a,int * b){
        int temp = *a;
        *a = *b;
        *b = temp;
    }

    void print(int * A,int n){
        for (int i = 0; i < n; i++)
            printf("%d ",A[i]);
        printf("\n");
    }


    int* selectionSort(int* A,int n) {
        // write code here
        for (int i = 0; i < n; i++){
            for (int j = i + 1; j < n; j++){
                if (A[j] < A[i]){
                    swap(A + j,A + i);
                }
            }
        }

        return A;
    }
};
原文链接:https://www.f2er.com/datastructure/382574.html

猜你在找的数据结构相关文章