#define USECHRONO #undef HAVE_MPI #include "eval.hpp" #include #include #include #include using namespace aed; using namespace std; //---:---<*>---:---<*>- COMIENZA CODIGO FUNCION --:---<*>---:---<*>---:---<*> // COMPLETAR DNI y NOMBRE AQUI: // Nombre: Gonzalo Martinez Yattah int DNI=44780897; void two_search(list &L,stack &P){ L.sort(); L.reverse(); list::iterator it = L.begin(); while(it!=L.end()){ if(*it%2 == 0){ P.push(*it); } it++; } } //---:---<*>---:---<*>- FINALIZA CODIGO FUNCION --:---<*>---:---<*>---:---<*> int main() { Eval ev; int vrbs=0; ev.eval<1>(two_search,vrbs); return 0; }