C++ progarm for optimized Bubble Sort
kw.cpp
#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])
            {
                a[j]=a[j]+a[j+1];
                a[j+1]=a[j]-a[j+1];
                a[j]=a[j]-a[j+1];
            }
        }
    }
}

int main()
{
    int n,i;
    cout<<"———————————————————————————————————————————";
    cout<<"\nImplementation of a Bubble Sort\n";
    cout<<"———————————————————————————————————————————";
    cout<<"\nEnter the number of elements ";
    cin>>n;
    int a[n];
    for(i=0;i<n;i++)
    {
        cin>>a[i];
    }
    
    BubbleSort(a,n);
    
    cout<<"\nSorted elements ";
    for(i=0;i<n;i++)
    {
        cout<<a[i]<<" ";
    }
    cout<<"\n———————————————————————————————————————————\n";
    return 0;
}
Output
kodingwindow@kw:~$ g++ kw.cpp
kodingwindow@kw:~$ ./a.out ——————————————————————————————————————————— Implementation of a Bubble Sort ——————————————————————————————————————————— Enter the number of elements 6 12 1024 -2048 0 -1 95 Sorted elements -2048 -1 0 12 95 1024 ——————————————————————————————————————————— kodingwindow@kw:~$
Advertisement