-
Notifications
You must be signed in to change notification settings - Fork 0
/
2750-1.cpp
executable file
·53 lines (50 loc) · 1.03 KB
/
2750-1.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
43
44
45
46
47
48
49
50
51
52
53
// #include<iostream>
// #include<sstream>
// #include<fstream>
// #include<string>
// #include<algorithm>
// #include<cmath>
// #include<stdexcept>
// #include<memory>
// #include<vector>
// #include<list>
// #include<map>
// #include<set>
// #include<numeric>
// using namespace std;
// template<typename iter>
// void bubble_sort(iter first, iter last){
// auto end = first;
// ++end;
// auto p = last;
// while(p!=end){
// auto current = first;
// auto next = first;
// ++next;
// for(;next!=p;){
// typename std::iterator_traits<iter>::value_type key = *current;
// if(*current > *next){
// *current = *next;
// *next = key;
// }
// ++current;
// ++next;
// }
// --p;
// }
// }
// int main(){
// int n;
// cin >> n;
// vector<int> numbers;
// while(n>0){
// int number;
// cin >> number;
// numbers.push_back(number);
// --n;
// }
// bubble_sort(numbers.begin(),numbers.end());
// for(auto p:numbers){
// cout << p << '\n';
// }
// }