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
|
#include <iostream>
#include <vector>
#include <array>
#include <deque>
#include <algorithm>
template <typename Cont>
void Sort(Cont& c)
{
std::sort(c.begin(), c.end());
}
int main() {
std::vector<int> v{3,5,1,9,7,2,8};
Sort(v);
std::array<int, 7> a{3,5,1,9,7,2,8 };
Sort(a);
std::deque<int> d{3,5,1,9,7,2,8 };
Sort(d);
std::cout << "v: ";
for(const auto i : v){ std::cout << i << ' '; }
std::cout << "\na: ";
for(const auto i : a){ std::cout << i << ' '; }
std::cout << "\nd: ";
for(const auto i : d){ std::cout << i << ' '; }
}
|