-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbubbleSort.c
74 lines (60 loc) · 1.36 KB
/
bubbleSort.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
// #include <stdio.h>
// void bubbleSort(int arr[], int n)
// {
// for (int i = 0; i < n - 1; i++)
// {
// for (int j = 0; j < n - 1; j++)
// {
// if (arr[j] > arr[j + 1])
// {
// int tmp = arr[j];
// arr[j] = arr[j + 1];
// arr[j + 1] = tmp;
// }
// }
// }
// }
// int main()
// {
// int n;
// printf("enter the length of array : ");
// scanf("%d", &n);
// int arr[n];
// printf("\n enter values of array : ");
// for (int i = 0; i < n; i++)
// {
// scanf("%d", &arr[i]);
// }
// bubbleSort(arr, n);
// printf("sorted array is: ");
// for (int i = 0; i < n-1; i++)
// {
// printf("%d ", arr[i]);
// }
// }
#include <stdio.h>
int main()
{
int array[100], n, c, d, swap;
printf("Enter number of elements\n");
scanf("%d", &n);
printf("Enter %d integers\n", n);
for (c = 0; c < n; c++)
scanf("%d", &array[c]);
for (c = 0 ; c < n - 1; c++)
{int min =c;
for (d = c+1 ; d < n; d++)
{
if(min>array[d]){
min=array[d];
}
}
swap = array[c];
array[c] = array[min];
array[min] = swap;
}
printf("Sorted list in ascending order:\n");
for (c = 0; c < n; c++)
printf("%d\n", array[c]);
return 0;
}