X-Git-Url: https://git.llucax.com/z.facultad/75.52/treemulator.git/blobdiff_plain/6d49476dc3816c4ba38637bc21f44693ca66af32..b68e2575b18e9ca726c7fc076d3565e5f778c173:/src/main.cpp?ds=inline diff --git a/src/main.cpp b/src/main.cpp index b41152b..c60cd14 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -5,14 +5,14 @@ int main (int argc, char *argv[]) { - BTree *tree; - ClaveFija c; + BTree tree ("test.idx", 1024); - tree = new BTree ("test.idx", 1024); + for (int i=0; i<10000; i++) { + ClaveFija c(i); - tree->AddKey (c); - - delete tree; + std::cout << "Agregando " << i << std::endl; + tree.AddKey (c); + } return 0; }