]> 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 cfe6ef8735524cc638f5425e5d2c95e9c367e33b..db8ecc180a318834906762505a294b9d42e65aed 100644 (file)
@@ -19,13 +19,16 @@ class BTreeData {
                virtual uchar *ToArray () const;
 
                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;
-                       ss << out << " ";
-                       ss << hijo;
+                       ss << "(" << out ;
+                       ss << ")" << "[" << hijo << "]";
                        ss >> out;
                        return out;
                }
@@ -53,7 +56,7 @@ class BTreeLeafData:public BTreeData {
 
 class BTreeChildData:public BTreeData {
        public:
-               BTreeChildData (uint child):BTreeData () { hijo = child; }
+               BTreeChildData (uint child):BTreeData () { hijo = child; clave = NULL; }
                BTreeChildData (uchar *node);
                virtual ~BTreeChildData ();
 
@@ -62,7 +65,7 @@ class BTreeChildData:public BTreeData {
                virtual operator std::string () const {
                        std::string out;
                        std::stringstream ss;
-                       ss << hijo;
+                       ss << "|" << hijo << "|";
                        ss >> out;
                        return out;
                }