-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbubble_sort.c
60 lines (49 loc) · 1.26 KB
/
bubble_sort.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/*
* Input : A sequence of n numbers <a1, a2, ..., an>
* Output : Sorted list <a1', a2', ..., an'>
* of the input sequence in ascending order
* Method : Compare each pair of adjacent items and swap if
* they are in the wrong order. The pass through the
* list is repeated untill no swaps are required.
*/
#include<stdio.h>
#include<stdlib.h>
int main()
{
// Function declaration
void bubble_sort(int *, int);
int *array = NULL; // Pointer to int, initialize to nothing.
int n, i;
printf("Enter number of elements: ");
scanf("%d", &n);
// Dynamically allocate memory for n elements
array = (int *)calloc(n, sizeof(int));
// Reading the elements
printf("\nEnter the elements:");
for (i = 0;i < n;i++)
scanf("%d", &array[i]);
// Invoke insertion_sort
bubble_sort(array, n);
// Display sorted array
printf("sorted array:");
for (i = 0;i < n;i++)
printf("%d ", array[i]);
printf("\n");
return 0;
}
/*
* Sorts the elements of the array in ascending order
*/
void bubble_sort(int *arr, int num)
{
int i, j, temp;
for (i = 0;i < num;i++) {
for (j = i + 1;j < num;j++) {
if (arr[i] > arr[j]) { // swapping
temp = arr[i];
arr[i] = arr[j];
arr[j] = temp;
}
}
}
}