int bajas = atoi (argv[3]);
KeyManager<std::string> km;
- BTree tree ("test.idx", bloque, BTree::KEY_VARIABLE);
+ BTree tree ("test.idx", bloque, BTree::TYPE_UNIQUE, BTree::KEY_VARIABLE);
std::list<std::string> lst;
std::list<std::string>::iterator it;
std::cout << " Miss : " << mal << "\n";
std::cout << " Total : " << (bien+mal) << "\n";
- return 0;
+ return mal;
}