zoukankan      html  css  js  c++  java
  • 冒泡排序法

    #include <iostream>
    using namespace std;
    //上下为验证,此处为核心。
    void bubbleSort(int a[], int N)
    {
        for(int i = 0; i < N-1; i++)
        {
            for(int j = 0; j < N - i - 1; j++)
            {
                if(a[j] > a[j+1])
                {
                    int temp = a[j];
                    a[j] = a[j+1];
                    a[j+1] = temp;
                }
            }
        }
    
    }
    int main()
    {
        int a[5]={7,4,2,5,3};
        bubbleSort(a,5);
        for(int i=0;i<5;i++)
            cout<<a[i]<<endl;
        system("pause");
        return 0;
    }
    step by step.
  • 相关阅读:
    NSString拼接字符串
    2020/4/26
    2020/4/25
    2020/4/24
    2020/4/22
    2020/4/22
    2020/4/20
    2020/4/19
    2020/4/18
    2020/4/17
  • 原文地址:https://www.cnblogs.com/answer727/p/6910575.html
Copyright © 2011-2022 走看看