I use this method to sort a vector and it works good. The sort is in
ascending order like:
15
16
17
etc...
Is it possible using this method in anyway to reverse the order like:
17
16
15
etc...
Code:std::vector<string> Sorting; std::sort(Sorting.begin(), Sorting.end());



LinkBack URL
About LinkBacks



I used to be an adventurer like you... then I took an arrow to the knee.