| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 361 人关注过本帖
标题:请教~BinarySearchTree
只看楼主 加入收藏
qq1677955
Rank: 1
等 级:新手上路
帖 子:1
专家分:0
注 册:2012-3-27
结帖率:0
收藏
已结贴  问题点数:20 回复次数:1 
请教~BinarySearchTree
这是我复制数据结构书的代码,想弄头文件,但编译出现很多错误。请高手帮帮

template <typename Comparable>
class BinarySearchTree
{
  public:
    BinarySearchTree( );
    BinarySearchTree( const BinarySearchTree & rhs );
    ~BinarySearchTree( );

    const Comparable & findMin( ) const;
    const Comparable & findMax( ) const;
    bool contains( const Comparable & x ) const;
    bool isEmpty( ) const;
    void printTree( ) const;

    void makeEmpty( );
    void insert( const Comparable & x );
    void remove( const Comparable & x );

    const BinarySearchTree & operator=( const BinarySearchTree & rhs );

  private:
    struct BinaryNode
    {
       Comparable element;
       BinaryNode *left;
       BinaryNode *right;

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

    BinaryNode *root;

    void insert( const Comparable & x, BinaryNode * & t ) const;
    void remove( const Comparable & x, BinaryNode * & t ) const;
    BinaryNode * findMin( BinaryNode *t ) const;
    BinaryNode * findMax( BinaryNode *t ) const;
    bool contains( const Comparable & x, BinaryNode *t ) const;
    void makeEmpty( BinaryNode * & t );
    void printTree( BinaryNode *t ) const;
    BinaryNode * clone( BinaryNode *t ) const;
};



    bool contains( const Comparable & x ) const   //公有调用私有 图4-17
    {
        return contains( x, root );
    }
        
   
    void insert( const Comparable & x )
    {
        insert( x, root );
    }
   
   
    void remove( const Comparable & x )
    {
        remove( x, root );
    }



    bool contains( const Comparable & x, BinaryNode *t ) const  //contains操作
    {
        if( t == NULL )
            return false;
        else if( x < t->element )
            return contains( x, t->left );
        else if( t->element < x )
            return contains( x, t->right );
        else
            return true;  

           BinaryNode * findMin( BinaryNode *t ) const  //findmin
    {
        if( t == NULL )
            return NULL;
        if( t->left == NULL )
            return t;
        return findMin( t->left );
    }

            BinaryNode * findMax( BinaryNode *t ) const   //findmax
    {
        if( t != NULL )
            while( t->right != NULL )
                t = t->right;
        return t;
    }

            void insert( const Comparable & x, BinaryNode * & t )     //insert  操作
    {
        if( t == NULL )
            t = new BinaryNode( x, NULL, NULL );
        else if( x < t->element )
            insert( x, t->left );
        else if( t->element < x )
            insert( x, t->right );
        else
            ;  // Duplicate; do nothing

        void remove( const Comparable & x, BinaryNode * & t )     //remove   操作
    {
        if( t == NULL )
            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 != NULL && t->right != NULL ) // Two children
        {
            t->element = findMin( t->right )->element;
            remove( t->element, t->right );
        }
        else
        {
            BinaryNode *oldNode = t;
            t = ( t->left != NULL ) ? t->left : t->right;
            delete oldNode;
        }
    }
搜索更多相关主题的帖子: public class void insert 
2012-03-27 23:05
specilize
Rank: 4
等 级:业余侠客
帖 子:126
专家分:247
注 册:2011-2-20
收藏
得分:20 
template <typename Comparable>bool BinarySearchTree::contains( const Comparable & x ) const
{
     return contains( x, root );
}
BinaryNode在private中定义,外部怎么还可以访问
2012-03-28 07:54
快速回复:请教~BinarySearchTree
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.015128 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved