#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: Meier Alexis int DNI=44734112; void insertab(btree &B, list &pos, list &val, btree::iterator it, int pos_1){ if(it==B.end())return; pos.push_back(pos_1); val.push_back(*it); insertab(B, pos, val, it.left(), 2 * pos_1 + 1); insertab(B, pos, val, it.right(), 2 * pos_1 + 2); } //---:---<*>---:---<*>---:---<*>---:---<*>---:---<*> void insertab(btree &B, list &pos,list &val) { // COMPLETAR AQUI... insertab(B,pos,val,B.begin(),0); } //---:---<*>---:---<*>- FINALIZA CODIGO FUNCION --:---<*>---:---<*>---:---<*> int main() { Eval ev; int vrbs=0; ev.eval<1>(insertab,vrbs); return 0; }