-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathP17_sorting_bubble.c
66 lines (53 loc) · 1.03 KB
/
P17_sorting_bubble.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
#include<stdio.h>
#include<conio.h>
void bubble(int ar[],int n){
int i,j;
for(i=0;i<n-1;i++){
for(j=0;j<n-1-i;j++){
if(ar[j]>ar[j+1]){
int temp=ar[j];
ar[j]=ar[j+1];
ar[j+1]=temp;
}
}
}
}
int main()
{
int i,j,n;
int a[]={12,5,3,8,33,55};
printf("Unsorted array is:\n");
for(i=0;i<6;i++){
printf("%d ",a[i]);
}
bubble(a,6);
printf("\nSorted array is:\n");
for(i=0;i<6;i++){
printf("%d ",a[i]);
}
return 0;}
// C++ code
// #include<iostream>
// #include<bits/stdc++.h>
// using namespace std;
// void display(int a[],int n)
// {
// for(int i=0;i<n;i++)
// {
// cout<<a[i]<<" ";
// }
// }
// int main()
// {
// int n;
// cout<<"Enter the number of elements of the array: ";
// cin>>n;
// int a[n];
// cout<<"Enter the elements of the array: ";
// for(int i=0;i<n;i++)
// cin>>a[i];
// cout<<"bubble sort: ";
// bubble(a,n);
// display(a,n);
// cout<<endl;
// }