/// Ordenamos las ofertas segun nuestras preferencias
void
Persona::
-ordenar_ofertas() // O(N^2.log(N^2))
+ordenar_ofertas() // O(N.log(N))
{
// este sort es in-place y O(N.log(N))
// Más info en: http://www.sgi.com/tech/stl/sort.html
- // Pero el PersonaCmp() es O(N)
+ // PersonaCmp() es O(1), asi que el orden es el mismo.
std::sort(ofertas.begin(), ofertas.end(), PersonaCmp(*this));
}