I need to sort the elements in a std::vector, but I'm only interested in the top N items being sorted, not the entire list:
eg. in a list of 10 elements, only first 3 have to be sorted.Don't care about the rest...
1,2,3,6,7,4,9,8,5
can this be done using std::sort
Edit
I simply needed to find the TOP N items in a vector. std::partial_sort_copy was exactely what I needed..kinda new to std