]> git.llucax.com Git - z.facultad/75.52/treemulator.git/blobdiff - src/btree_data.h
Más Parametrizable la creación del árbol.
[z.facultad/75.52/treemulator.git] / src / btree_data.h
index 5bbfc27d6e80bd3efa85384b488d0a33cd4d41d9..db8ecc180a318834906762505a294b9d42e65aed 100644 (file)
@@ -20,8 +20,10 @@ class BTreeData {
 
                Clave* getClave () { return clave; }
                uint getChild () { return hijo; }
+               void setChild (uint c) { hijo = c; }
 
                bool operator < (const BTreeData &data) const;
+               bool operator == (const BTreeData &data) const;
                virtual operator std::string () const {
                        std::string out = (*clave);
                        std::stringstream ss;