-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathprogram-11.cpp
42 lines (36 loc) · 884 Bytes
/
program-11.cpp
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
//bubble sort ascending order in c++ program try to more optimize...
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
int main() {
int n;
cout<<"Enter the value of n: ";
cin>>n;
vector<int>ara(n);
for(int i = 0; i < ara.size(); i++){
cin>>ara[i];
}
int tamp;
for(int step = 0; step < ara.size(); step++){
int last = ara.size() - 1 - step;
bool sorted = true;
for(int j = 0; j <= last - 1; j++){
if(ara[j] > ara[j + 1]){
tamp = ara[j];
ara[j] = ara[j + 1];
ara[j + 1] = tamp;
sorted = false;
}
}
if(sorted){
break;
}
}
for(int i = 0; i < ara.size(); i++){
cout<<ara[i] <<" ";
}
ios_base::sync_with_stdio(0);
cin.tie(0);
return 0;
}