Standard C++ Library User Guide and Tutorial

// sort the vector ascending
sort (aVec.begin(), aVec.end());
// sort the deque descending
sort (aDec.begin(), aDec.end(), greater<int>() );
// alternative way to sort descending
sort (aVec.rbegin(), aVec.rend());
}