From e5ce8a55f7ffad8d599e0517db731f4bc8c33034 Mon Sep 17 00:00:00 2001 From: REVATHYJESS <56391652+REVATHYJESS@users.noreply.github.com> Date: Sun, 17 Oct 2021 09:32:24 +0000 Subject: [PATCH] Added a program for sorting --- .replit | 2 ++ sortingbubble.c | 41 +++++++++++++++++++++++++++++++++++++++++ 2 files changed, 43 insertions(+) create mode 100644 .replit create mode 100644 sortingbubble.c diff --git a/.replit b/.replit new file mode 100644 index 000000000..6134e302b --- /dev/null +++ b/.replit @@ -0,0 +1,2 @@ +language = "undefined" +run = "" \ No newline at end of file diff --git a/sortingbubble.c b/sortingbubble.c new file mode 100644 index 000000000..a954561ce --- /dev/null +++ b/sortingbubble.c @@ -0,0 +1,41 @@ +// C program for implementation of Bubble sort +#include + +void swap(int *xp, int *yp) +{ + int temp = *xp; + *xp = *yp; + *yp = temp; +} + +// A function to implement bubble sort +void bubbleSort(int arr[], int n) +{ + int i, j; + for (i = 0; i < n-1; i++) + + // Last i elements are already in place + for (j = 0; j < n-i-1; j++) + if (arr[j] > arr[j+1]) + swap(&arr[j], &arr[j+1]); +} + +/* Function to print an array */ +void printArray(int arr[], int size) +{ + int i; + for (i=0; i < size; i++) + printf("%d ", arr[i]); + printf("\n"); +} + +// Driver program to test above functions +int main() +{ + int arr[] = {64, 34, 25, 12, 22, 11, 90}; + int n = sizeof(arr)/sizeof(arr[0]); + bubbleSort(arr, n); + printf("Sorted array: \n"); + printArray(arr, n); + return 0; +}