#define USECHRONO #undef HAVE_MPI #include "eval.hpp" #include #include #include #include #include using namespace aed; using namespace std; //---:---<*>---:---<*>- COMIENZA CODIGO FUNCION --:---<*>---:---<*>---:---<*> // COMPLETAR DNI y NOMBRE AQUI: // Nombre: Villa, Luciana int DNI=43578927; //---:---<*>---:---<*>---:---<*>---:---<*>---:---<*> void cr7(tree &T, tree::iterator it, list &L){ if(it==T.end())return; L.push_back(*it); auto c = it.lchild(); auto r = it.right(); if(*c==7)return; cr7(T,c,L); cr7(T,r,L); } list cr7(tree &T){ list L; cr7(T,T.begin(),L); return L; } int main() { Eval ev; int vrbs = 0; ev.eval<1>(cr7,vrbs); return 0; }