From 588ab770f33923f0161e4df1b83e3d32de1ab97c Mon Sep 17 00:00:00 2001 From: Vaibhavtech2006 <145020241+Vaibhavtech2006@users.noreply.github.com> Date: Wed, 30 Oct 2024 09:57:02 +0530 Subject: [PATCH] Create sortingnewmethod.c --- data_structures/sortingnewmethod.c | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 data_structures/sortingnewmethod.c diff --git a/data_structures/sortingnewmethod.c b/data_structures/sortingnewmethod.c new file mode 100644 index 00000000..fbb5dacf --- /dev/null +++ b/data_structures/sortingnewmethod.c @@ -0,0 +1,22 @@ +#include + +void bubbleSort(int arr[], int n) { + for (int i = 0; i < n - 1; i++) { + for (int j = 0; j < n - i - 1; j++) { + if (arr[j] > arr[j + 1]) { + int temp = arr[j]; + arr[j] = arr[j + 1]; + arr[j + 1] = temp; + } + } + } +} + +int main() { + int arr[] = {64, 25, 12, 22, 11}; + int n = sizeof(arr) / sizeof(arr[0]); + bubbleSort(arr, n); + printf("Sorted array: "); + for (int i = 0; i < n; i++) printf("%d ", arr[i]); + return 0; +}