2018-11-13 05:06:33 +08:00
|
|
|
Array4i v = Array4i::Random().abs();
|
|
|
|
|
cout << "Here is the initial vector v:\n" << v.transpose() << "\n";
|
|
|
|
|
std::sort(v.begin(), v.end());
|
2020-03-22 09:30:06 +08:00
|
|
|
cout << "Here is the sorted vector v:\n" << v.transpose() << "\n";
|