C Program - Bubble sort



#include <stdio.h>
#include <conio.h>

void bubble_sort(long [], long);

int main()
{
    long array[100], n, c, d, swap;

    printf("Enter number of elements\n");
    scanf("%ld", &n);

    printf("Enter %ld integers\n", n);

    for (c = 0; c < n; c++)
        scanf("%ld", &array[c]);

    bubble_sort(array, n);

    printf("Sorted list in ascending order:\n");

    for ( c = 0 ; c < n ; c++ )
        printf("%ld\n", array[c]);

    getch();
    return 0;
}

void bubble_sort(long list[], long n)
{
    long c, d, t;

    for (c = 0 ; c < ( n - 1 ); c++)
    {
        for (d = 0 ; d < n - c - 1; d++)
        {
            if (list[d] > list[d+1])
            {
                /* Swapping */
                t = list[d];
                list[d] = list[d+1];
                list[d+1] = t;
            }
        }
    }
}

Output
-----------

Comments

Popular posts from this blog

Introduction to C++ Programming Language

The Assembly Process Of 8086 Microprocessor-Two Pass Assembling Steps

Installing 8086 Assembler on a Computer