C ++ доступ к структуре в базовом классе из производного класса - PullRequest
0 голосов
/ 14 октября 2011

Пересмотрено, чтобы включить фактический код

У меня есть класс

    // BinarySearchTree class provide by Mark Allen Weiss in Data Structures
    // and Algorithm Analysis in C++, 3ed
    //
    // Implementation is combined with specification.  No separate header file.

    #ifndef BINARY_SEARCH_TREE_H
    #define BINARY_SEARCH_TREE_H


    #include <iostream>
    using namespace std;

    template <typename Comparable>
    class BinarySearchTree {
    public:
    //Constructors
    BinarySearchTree( ) :root( 0 ) { }
    BinarySearchTree( const BinarySearchTree & rhs ) : root( 0 )
    {
        *this = rhs;
    }

    //Destructor
    ~BinarySearchTree( )
    {
        makeEmpty( );
    }


    /**
     * Find the smallest item in the tree.
     * Throw UnderflowException if empty.
     */
    const Comparable & findMin( ) const
    {
        return findMin( root )->element;
    }

    /**
     * Find the largest item in the tree.
     * Throw UnderflowException if empty.
     */
    const Comparable & findMax( ) const
    {
        return findMax( root )->element;
    }


    /**
     * Test if the tree is logically empty.
     * Return true if empty, false otherwise.
     */
    bool isEmpty( ) const
    {
        return root == 0;
    }



    /**
     * Print the tree contents in sorted order.
     */
    void printTree( ostream & out = cout ) const
    {
        if( isEmpty( ) )
            out << "Empty tree" << endl;
        else
            printTree( root ,out );
    }




    /**
     * Insert x into the tree; duplicates are ignored.
     */
    void insert( const Comparable & x )
    {
        insert( x, root );
    }

    /**
     * Remove x from the tree. Nothing is done if x is not found.
     */
    void remove( const Comparable & x )
    {
        remove( x, root );
    }

    /**
     * Deep copy.
     */
    const BinarySearchTree & operator=( const BinarySearchTree & rhs )
    {
        if( this != &rhs )
        {
            makeEmpty( );
            root = clone( rhs.root );
        }
        return *this;
    }


    //protected:
    friend struct BinaryNode
    {
        Comparable element;
        BinaryNode *left;
        BinaryNode *right;

        BinaryNode( const Comparable & theElement, BinaryNode *lt, BinaryNode* rt ) :
              element(theElement), left(lt), right(rt)
        { }

    };

    BinaryNode *root;

    private:
    /**
     * Internal method to insert into a subtree.
     * x is the item to insert.
     * t is the node that roots the subtree.
     * Set the new root of the subtree.
     */
    void insert( const Comparable & x, BinaryNode * & t )
    {
        if( t == 0 )
            t = new BinaryNode( x, 0, 0 );
        else if( x < t->element )
            insert( x, t->left );
        else if( t->element < x )
            insert( x, t->right );
        else
            ;  // Duplicate; do nothing
    }

    /**
     * Internal method to remove from a subtree.
     * x is the item to remove.
     * t is the node that roots the subtree.
     * Set the new root of the subtree.
     */
    void remove( const Comparable & x, BinaryNode * & t )
    {
        if( t == 0 )
            return;   // Item not found; do nothing
        if( x < t->element )
            remove( x, t->left );
        else if( t->element < x )
            remove( x, t->right );
        else if( t->left != 0 && t->right != 0 ) // Two children
        {
            t->element = findMin( t->right )->element;
            remove( t->element, t->right );
        }
        else
        {
            BinaryNode *oldNode = t;
            t = ( t->left != 0 ) ? t->left : t->right;
            delete oldNode;
        }
    }

    /**
     * Internal method to find the smallest item in a subtree t.
     * Return node containing the smallest item.
     */
    BinaryNode * findMin( BinaryNode *t ) const
    {
        if( t == 0 )
            return 0;
        if( t->left == 0 )
            return t;
        return findMin( t->left );
    }

    /**
     * Internal method to find the largest item in a subtree t.
     * Return node containing the largest item.
     */
    BinaryNode * findMax( BinaryNode *t ) const
    {
        if( t != 0 )
            while( t->right != 0 )
                t = t->right;
        return t;
    }

    /**
     * Internal method to print a subtree rooted at t in sorted order.
     */
    void printTree( BinaryNode *t, ostream & out ) const
    {
        if( t != 0 )
        {
            printTree( t->left, out );
            out << t->element << endl;
            printTree( t->right, out );
        }
    }


    /**
     * Internal method to clone subtree.
     */
    BinaryNode * clone( BinaryNode *t ) const
    {
        if( t == 0 )
            return 0;
        else
            return new BinaryNode( t->element, clone( t->left ), clone( t->right ) );
    }

    };

    #endif

, который содержит структуру. У меня есть второй класс "MyBST", который наследует от вышеупомянутого класса

#include"BinarySearchTree.h"
using namespace std;

template <typename Comparable>
class MyBST : public BinarySearchTree<Comparable>
{
public:
    MyBST()
    {
        leftReplace = true;
    }

    void strictRemoval()
    {
        if (leftReplace)
        {
            removeLargestFromtLeft(root->element, root);
            leftReplace = false;
        }
        else
        {
            remove(root->element);
            leftReplace = true;
        }
        printTree();
    }


    bool leftReplace;
    void removeLargestFromLeft( const Comparable & x, BinaryNode * &t )
    {
        if( t == 0 )
            return;   // Item not found; do nothing
        if( x < t->element )
            removeLargestFromLeft(x, root->left);
        else if( t->element < x )
            removeLargestFromLeft(x, root->right);
        else if( t->left != 0 && t->right != 0 ) // Two children
        {
            t->element = findMax( t->left )->element;
            removeLargestFromLeft(t->element, root->left);
        }
        else
        {
            BinaryNode *oldNode = t;
            t = ( t->left != 0 ) ? t->left : t->right;
            delete oldNode;
        }
    }

    BinaryNode * findMax(BinaryNode * t)
    {
        // not implemented yet stopped here because the rest of the code was not 
        // working
    }
};

Новое с правкой

Это моя основная функция, которая будет использовать эти два класса. Я просто пытаюсь заставить свой код работать и проверить его в данный момент.

#include "BinarySearchTree.h"
#include "MyBST.h"

int main()
{
    MyBST<int> BST;
    BST.insert(3);
    BST.insert(4);
    BST.insert(5);
    BST.insert(6);
    BST.insert(6);
    BST.insert(7);
    BST.insert(8);
    BST.insert(9);
    BST.insert(1);
    BST.printTree();
    while (!BST.isEmpty())
        BST.strictRemoval();
    return 0;
};

Когда я компилирую два класса, я получаю сообщение об ошибке: - "BinaryNode" не был объявлен
- «root» не был объявлен в этой области
- запрос на член 'left' в 't->', который относится к неклассному типу 'int'
- запрос на членство «right» в «t->», которое относится к неклассному типу «int»
- запрос на член ‘element’ в ‘t->’, который имеет неклассовый тип ‘int’

Что я делаю не так? Я думал, что публичное наследование все еще даст мне доступ к защищенным методам и переменным, и предполагал, что то же самое будет верно для структур. Я проверил, была ли это единственная проблема, изменив защищенную на общедоступную, но все еще появляются те же ошибки.

Я что-то не так делаю? Я довольно новичок в c ++, просто поднял его из-за класса, который я посещаю, я более привык к ruby ​​и java.

Любая помощь будет принята с благодарностью.

1 Ответ

2 голосов
/ 14 октября 2011

Вам не хватает ; в конце каждого из ваших классов.

class BinarySearchTree {
    ...
}; // <-- there

Также privateMethod1 отсутствует тип возвращаемого значения.Возможно void?

void privateMethod1()
{...}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...