#include <stdio.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]); 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; } } } }
Free C/C++ programs with output, C++, Programs C Programming Language, Object Oriented Programming (OOPs), C/C++ Programs Codes, C/C++ Program Shortcuts, History of C/C++ programming Language, C/C++ Programming Compilers……..!
Thursday, 25 April 2013
Program of Bubble Sort in C Language Using Function
Subscribe to:
Post Comments (Atom)
Check out other awesome sorting programs on CodeTonics
ReplyDeleteInsertion Sort in C
Selection Sort in C
Quick Sort in C
Bubble Sort in C
Heap Sort in C
Merge Sort in C
Radix Sort in C
ReplyDeleteVery informative article.Thank you author for posting this kind of article .
http://www.wikitechy.com/view-article/bubble-sort-program-in-cpp-with-example
Both are really good,
Cheers,
Venkat