views:

52

answers:

2

Possible Duplicate:
C++ struct sorting

Is it possible to sort a vector in C++ according to a specified sorting method, like used in Java's Collections.sort that takes a Comparator?

A: 

Yes. See the answers to this question from this morning: http://stackoverflow.com/questions/2698854/c-struct-sorting

Fred Larson
A: 

Yes, it is. Take a look here for an example.

Steven Jackson